Skip to main content

Gives you `manage.py runserver --pdb` and `manage.py test --pdb`

Project description

Django PDB
==========

Make debugging Django easier
----------------------------

Adding ``pdb.set_trace()`` to your source files every time you want to break into pdb sucks.

Don't do that.

Do this.

Installation
------------

Install using pip::

pip install django-pdb

Add to your django project::

INSTALLED_APPS = (
...
'django_pdb',
)

Usage
-----

``manage.py runserver``

Drops into pdb at the start of a view if the URL includes a `pdb` GET parameter.

Drops into ipdb at the start of a view if the URL includes a `ipdb` GET parameter.

This behavior is only enabled if ``settings.DEBUG = True``::

bash: testproject/manage.py runserver
Validating models...

0 errors found
Django version 1.3, using settings 'testproject.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

GET /test?pdb
function "myview" in testapp/views.py:7
args: ()
kwargs: {}

> /Users/tom/github/django-pdb/testproject/testapp/views.py(8)myview()
-> a = 1
(Pdb)

``manage.py runserver --pdb`` **or** ``manage.py runserver --ipdb``::

Drops into pdb/ipdb at the start of every view::

bash: testproject/manage.py runserver --pdb
Validating models...

0 errors found
Django version 1.3, using settings 'testproject.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

GET /test
function "myview" in testapp/views.py:7
args: ()
kwargs: {}

> /Users/tom/github/django-pdb/testproject/testapp/views.py(7)myview()
-> a = 1
(Pdb)


``manage.py test --pdb`` **or** ``manage.py test --ipdb``

Drops into pdb/ipdb on test errors/failures::

bash: testproject/manage.py test testapp --pdb
Creating test database for alias 'default'...
E
======================================================================
>>> test_error (testapp.tests.SimpleTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/tom/github/django-pdb/testproject/testapp/tests.py", line 16, in test_error
one_plus_one = four
NameError: global name 'four' is not defined
======================================================================

> /Users/tom/github/django-pdb/testproject/testapp/tests.py(16)test_error()
-> one_plus_one = four
(Pdb)


Other apps that override runserver
----------------------------------

If you also use other apps that override the runserver command, but still want to use `django-pdb`...

Add the following to your settings.py::

if DEBUG:
MIDDLEWARE_CLASSES += ('django_pdb.middleware.PdbMiddleware',)

And make sure that ``django_pdb`` comes before any conflicting apps in ``INSTALLED_APPS``.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

django-pdb-0.2.1.zip (9.4 kB view details)

Uploaded Source

django-pdb-0.2.1.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file django-pdb-0.2.1.zip.

File metadata

  • Download URL: django-pdb-0.2.1.zip
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-pdb-0.2.1.zip
Algorithm Hash digest
SHA256 20f2c3fe489bedfa43fbcd76359edd24989fca722232412e643e6756acb0766a
MD5 2893d188b10d1f139ab65bc7c8eb0e7e
BLAKE2b-256 bdb44e59e2c1ebeb03e276f29c78cbfcee685e03fdc06ed2066df9c8ee7bd556

See more details on using hashes here.

File details

Details for the file django-pdb-0.2.1.tar.gz.

File metadata

  • Download URL: django-pdb-0.2.1.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-pdb-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e3f8485cb765969e4f36c3a63f8c2e8f587f113f820c6e25b8bf05dea4598889
MD5 8205950855e2687ea9d49931cc093458
BLAKE2b-256 1805bb064725157759cc29dda24df9a46f88647f395c7444b9c6d893eedfed38

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page