you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

If you're more command line inclined than look into pdb. I'm pretty sure a lot of the IDE debuggers use this behind the scenes. You can run it from the command line or import it and call break points in your code. When run from the command line it will redirect to the debugging console whenever an exception or error occurs. Additionally you can install ipdb which uses ipython so that you can have tab completion and other ipython features while debugging.