Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from hookee.pluginmanager import REQUEST_PLUGIN 

2from hookee.util import PrintUtil 

3 

4__author__ = "Alex Laird" 

5__copyright__ = "Copyright 2020, Alex Laird" 

6__version__ = "1.2.2" 

7 

8plugin_type = REQUEST_PLUGIN 

9description = "Print the `request`'s query parameters, if defined." 

10 

11print_util = None # type: PrintUtil 

12 

13 

14def setup(hookee_manager): 

15 global print_util 

16 

17 print_util = hookee_manager.print_util 

18 

19 

20def run(request): 

21 if request.args: 

22 print_util.print_dict("Query Params", dict(request.args), color=print_util.request_color) 

23 

24 return request