Is there a way to do runtime checking for django applications? (Any IDE that does this?)

I want to perform runtime checking for django applications, that is, I want to run the application and be able to interrupt / execute / check runtime variables.

Is there any IDE that supports this, or in any case, to execute django command line?

I know that the Django shell exists, however, it simply installs the environment and does not provide verification of running code.

thank you

+2
source share
2 answers

Wingware WingIDE supports direct verification and debugging: http://wingware.com/http://wingware.com/doc/howtos/django

Edit: It seems that PyScripter also supports Django debugging -> http://code.google.com/p/pyscripter/

If you're at Eclipse, Pydev also supports 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.

+1
source

You can do this using PyCharm from JetBrains.

+1
source

Source: https://habr.com/ru/post/1334617/


All Articles