Python Debugging Tools
Comments recommend and discuss various Python debuggers like ipdb, pudb, pdb, and PySnooper, sharing tips for effective debugging and comparing to tools like pry in other languages.
Activity Over Time
Top Contributors
Keywords
Sample Comments
Have you tried ipdb?https://pypi.python.org/pypi/ipdb
You might find this useful: https://github.com/gotcha/ipdb
this is great, python debug tooling seems to be getting a lot better recently.
may be python pdb?https://docs.python.org/3/library/pdb.html
This is buried in the comments but `pudb` is great debugger: https://pypi.org/project/pudb/- visual interface to set breakpoint- inline interpreter- inspect on exceptionIt's like using a modern debugger but inside your console. Can't recommend enough.
You should check out ipdb too. Thatβs my recommendation.
I recommend ipdb as well. It's IPython's PDB replacement. pip install ipdb
Are you aware of this: import pudb; pudb.set_trace()
I use a lot of pudb and a lot of print('\n\n~~~!!!VARIABLE', variable)
Have you tried out the Python standard library debugger (pdb)?