Forgot to mention that when the debugger pauses on a line of code, besides using the key commands mentioned before, you can run single-line Python commands as if you were in an interactive session.
This allows you to inspect variables and such. For example, once the debugger pauses and displays the (Pdb) prompt, you can type "print request" to print the entire contents of the request object to the console.

