is it possible to to a step through the code in django ( i mean step through while debugging)
Yes, you can do that by using the Python Debugger module, pdb. I have covered the topic of debugging Django applications on my blog before. In an nutshell, if you are using the Django development server, you can easily step through your Django application by placing a breakpoint with the statements import pdb; pdb.set_trace() at any point in your view code where you want to start debugging, and then step through the debugger that is invoked on the shell where the Django development server was running from.
Yes, as long as you're running in the development server.
If so, just put this into your code at the point you want to stop:
import pdb; pdb.set_trace()
and you will be dumped into the debugger on the console, from where you can step through to your heart's content.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With