-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doest it work with Django? #56
Comments
I never tried using it with Django... |
Hi, |
This seems to be a limitation of Django and PDB themselves. I found a package that allows using PDB with django without manually adding Note that you need to pass an argument either in the command line or in the HTTP request. It's all in the readme of that package. |
Thanks for the reply. Could you elaborate more on the limitation please? django-pdb unfortunately is not enough for me. Thanks |
Never looked that much into it, since I'm not using Django myself, but I suspect that PDB does not support multithreading. |
At least, not unless you call |
Hi,
I've tested it with Django Web Framework (Python) but I can get it to work properly so far. By "work with Django" I mean to use the debugger for the
python manage.py runserver
command that starts a http webserver for development purpose, so the process keep listening for request. It seems to work on the server initialization, but do not stop on breakpoints for code executed on the requests/response cicle.Did someone get it to work already in such case?
Thanks a lot!
The text was updated successfully, but these errors were encountered: