Skip to content Skip to sidebar Skip to footer

Is There A Way To Do Runtime Inspection For Django Apps? (Any IDE That Does This?)

I want to do runtime inspection for django apps, meaning, I want to run an app and be able to break/step through/inspect runtime variables. Is there any IDE that support this or an

Solution 1:

Wingware's WingIDE supports live inspecting and debugging: http://wingware.com/ -> http://wingware.com/doc/howtos/django

Edit: It seems that PyScripter has some support for debugging Django too -> http://code.google.com/p/pyscripter/

If you're into Eclipse, Pydev also support Django -> http://pydev.org/manual_adv_django.html

And about WingIDE, you can get a free Professional license for use in an open source project.


Solution 2:

You can do that with PyCharm from JetBrains.


Post a Comment for "Is There A Way To Do Runtime Inspection For Django Apps? (Any IDE That Does This?)"