Python: modern GUI debugger for Python2.7 and Python3.x, no IDE

I'm looking for a Python debugger with the following features:

  • Modern . I searched the internet and found debuggers that were last updated in 2009-2010. This is too old and means it is no longer supported ...

  • Has a graphical interface

  • It is autonomous . I don't want to download a whole IDE to debug some of the released apps.

  • Python2.7 and Python 3.x support

Can you recommend me on such a debugger?

EDIT:

From research and answers, there doesn't seem to be a debugger that fits the bill:

  • winpdb was last updated in 2009/2010

  • pudb GUI is console based (like vi editor ) - not very user friendly and modern

  • Other standalone debuggers have no GUI at all

  • Other debuggers are not standalone but are part of the IDE - not suitable for debugging released applications

If there is an update - I'll post it here ...

+3


source to share


2 answers


https://pypi.python.org/pypi/pudb

or



http://winpdb.org/about/

I think. Not used either though.

+3


source


You might go to this http://pybee.org/bugjar/ . This debugger doesn't have all the features, but it works.



+1


source







All Articles