{ "info": { "author": "Diederik van der Boor", "author_email": "opensource@edoburu.nl", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.4", "Framework :: Django :: 1.5", "Framework :: Django :: 1.6", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Framework :: Django :: 2.0", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Debuggers" ], "description": "Introduction\n============\n\nThe ``debugtools`` module offers some easy to use debugging utilities to assist Django development.\nIt features:\n\n* A template tag to print context.\n* A ``XViewMiddleware`` variation to see which *view* and *template* was used to render a page.\n* A panel for django-debug-toolbar_ to show which *view* and *template* was used to render a page.\n* A jQuery ``debug()`` function.\n\n\nInstallation\n============\n\nFirst install the module, preferably in a virtual environment. It can be installed from PyPI::\n\n pip install django-debugtools\n\nOr the current folder can be installed::\n\n pip install .\n\nConfiguration\n-------------\n\nAdd the module to the installed apps::\n\n INSTALLED_APPS += (\n 'debugtools',\n )\n\nAs of Django 1.9, either use ``{% load debugtools_tags %}`` or add the following to the settings:\n\n.. code-block:: python\n\n TEMPLATES = [\n {\n 'BACKEND': 'django.template.backends.django.DjangoTemplates',\n 'DIRS': [],\n 'APP_DIRS': True,\n 'OPTIONS': {\n 'context_processors': [\n 'django.template.context_processors.debug',\n 'django.template.context_processors.request',\n # ...\n ],\n 'builtins': [ # Add this section\n \"debugtools.templatetags.debugtools_tags\", # Add this line\n ],\n },\n },\n ]\n\nOr, when you use a ``local.py`` settings file:\n\n.. code-block:: python\n\n TEMPLATES[0]['OPTIONS']['builtins'] += [\n \"debugtools.templatetags.debugtools_tags\", # enables {% print %}\n ]\n\n\nFeatures\n--------\n\nPrint Template Tag\n~~~~~~~~~~~~~~~~~~\n\nIn Django templates, the following code can be used::\n\n {% print variable1 variable2 %}\n\nThis will print out the specific variables, in case of ``{% print original %}``:\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/print-original.png\n :width: 959px\n :height: 166px\n\nWhen no variables are given (e.g. ``{% print %}``), all context variables are displayed:\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/template-context.png\n :width: 744px\n :height: 569px\n\n\nThe template context variables are printed in a customized ``pprint.pformat`` format, for easy reading.\nNote no ``{% load %}`` tag is needed; the ``{% print %}`` function is added to the template builtins for debugging convenience.\n\nPrint Queries template tag\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nFor convenience, there is also a ``{% print_queries %}`` tag,\nbased on http://djangosnippets.org/snippets/93/\n\nFor more sophisticated debugging, you may want to use the *django-debug-toolbar* for this job.\n\n\nDebug Toolbar Panel\n~~~~~~~~~~~~~~~~~~~\n\nAdd the following settings to your django-debug-toolbar_ configuration::\n\n DEBUG_TOOLBAR_PANELS = (\n 'debug_toolbar.panels.versions.VersionsPanel',\n 'debug_toolbar.panels.timer.TimerPanel',\n 'debug_toolbar.panels.settings.SettingsPanel',\n 'debug_toolbar.panels.headers.HeadersPanel',\n 'debug_toolbar.panels.request.RequestPanel',\n 'debug_toolbar.panels.sql.SQLPanel',\n 'debug_toolbar.panels.staticfiles.StaticFilesPanel',\n 'debugtools.panels.ViewPanel', # Add this one\n 'debug_toolbar.panels.templates.TemplatesPanel',\n 'debug_toolbar.panels.cache.CachePanel',\n 'debug_toolbar.panels.signals.SignalsPanel',\n 'debug_toolbar.panels.logging.LoggingPanel',\n 'debug_toolbar.panels.redirects.RedirectsPanel',\n )\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/debug-toolbar.png\n :width: 887px\n :height: 504px\n\n|\n\njQuery debug print\n~~~~~~~~~~~~~~~~~~\n\nAdd the following to the page::\n\n \n\nNow you can print the jQuery selector context to the console::\n\n $(\"#foo\").children('li').debug().addClass('bar');\n\nThis will print the matched ``
  • `` elements in the console, among with the current jQuery selector.\nOptionally, a prefix can be included in the ``debug()`` call::\n\n $(\"#foo\").debug(\"at baz: \").addClass('bar');\n\n\nX-View Middleware\n~~~~~~~~~~~~~~~~~\n\nAs alternative to the django-debug-toolbar_ panel, you can also add the ``XViewMiddleware``.\nAdd the following setting::\n\n INTERNAL_IPS = (\n '127.0.0.1',\n )\n\n MIDDLEWARE_CLASSES += (\n 'debugtools.middleware.XViewMiddleware',\n )\n\nAll requests from the internal IP, or made by the admin user will have a ``X-View`` header and ``X-View-Template`` header.\nIn the Firebug console, or Chrome web inspector, you can see which view and template handled the current request:\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/firebug-xview.png\n :width: 811px\n :height: 41px\n\nThe alternative templates are also displayed, in case the view allows the template to be overwritten with a different name.\n\n\nPrint tag examples\n------------------\n\nFor example, when using the following code::\n\n {% print original %}\n\n {% print inline_admin_formset %}\n\n {% for inline_admin_form in inline_admin_formset %}\n {% print inline_admin_form %}\n {% print inline_admin_form.form.name %}\n {% endfor %}\n\nIt prints the context values, which helps to learn a lot about the template context:\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/print-original.png\n :width: 959px\n :height: 166px\n\n|\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/inline_admin_formset.png\n :width: 959px\n :height: 208px\n\n|\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/inline_admin_form.png\n :width: 959px\n :height: 355px\n\n|\n\n.. image:: https://github.com/edoburu/django-debugtools/raw/master/docs/images/adminform.form.name.png\n :width: 959px\n :height: 352px\n\nThis makes it much easier to understand what the code provides to templates.\n\n.. _django-debug-toolbar: https://github.com/django-debug-toolbar/django-debug-toolbar\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/edoburu/django-debugtools/zipball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/edoburu/django-debugtools", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "django-debugtools", "package_url": "https://pypi.org/project/django-debugtools/", "platform": "", "project_url": "https://pypi.org/project/django-debugtools/", "project_urls": { "Download": "https://github.com/edoburu/django-debugtools/zipball/master", "Homepage": "https://github.com/edoburu/django-debugtools" }, "release_url": "https://pypi.org/project/django-debugtools/1.7.4/", "requires_dist": null, "requires_python": "", "summary": "A toolbox of small utilities to assist Django development", "version": "1.7.4" }, "last_serial": 4804963, "releases": { "0.9.0": [ { "comment_text": "", "digests": { "md5": "9f8a31af6ce6e1d9aae397224a9fe75a", "sha256": "33e05634cb65bc6004ff1d22c2691db44cd0040dfc071204d83d0008fb51e48f" }, "downloads": -1, "filename": "django-debugtools-0.9.0.tar.gz", "has_sig": false, "md5_digest": "9f8a31af6ce6e1d9aae397224a9fe75a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7463, "upload_time": "2012-04-02T14:05:05", "url": "https://files.pythonhosted.org/packages/4d/b9/bb304f7907489f3a814501c5f799c3d8bfacad95d754f094752844876182/django-debugtools-0.9.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "762ba6ecb66ecf62efacb28d05864708", "sha256": "453be99dbace5a3d659ebd6616848c5b4cde738cd77ccb80aa0164f94665aff2" }, "downloads": -1, "filename": "django-debugtools-1.0.0.tar.gz", "has_sig": false, "md5_digest": "762ba6ecb66ecf62efacb28d05864708", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12019, "upload_time": "2012-08-17T12:07:45", "url": "https://files.pythonhosted.org/packages/d7/b8/7eaada7817bbdf08c818f611f49cd30a11491c1a32b31db0f680dbaa5aaa/django-debugtools-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "833845d2f8817091ac54b6b73efe65e3", "sha256": "37cb3ff39614e74a57135710996fcde780eeb4140733e8b444f908a48658e7e6" }, "downloads": -1, "filename": "django-debugtools-1.1.0.tar.gz", "has_sig": false, "md5_digest": "833845d2f8817091ac54b6b73efe65e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14090, "upload_time": "2012-09-14T11:37:40", "url": "https://files.pythonhosted.org/packages/7a/4d/a64edfba81fe4251b506fa69fd7f76ec344ddba261cb047df265c15a20d8/django-debugtools-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "739710d3d50e97e4304a6ba7bf7e2ef1", "sha256": "8dea800cf7542cab13bbff793a5450d405c48268557f697060e176d6d169fd93" }, "downloads": -1, "filename": "django-debugtools-1.1.1.tar.gz", "has_sig": false, "md5_digest": "739710d3d50e97e4304a6ba7bf7e2ef1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14754, "upload_time": "2013-09-25T12:09:01", "url": "https://files.pythonhosted.org/packages/5b/2a/a8e53674df58cf81789a54635cbc2ea82dc3607ef90fc6b6f5cc9b81498d/django-debugtools-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "b420b0b74b624fbf33dd18eb79ed1898", "sha256": "e02ccc24a9aadb7dc647327a81cb4b4d5bf5401d4c7d7d0cd4259fec4e3b8539" }, "downloads": -1, "filename": "django-debugtools-1.1.2.tar.gz", "has_sig": false, "md5_digest": "b420b0b74b624fbf33dd18eb79ed1898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14879, "upload_time": "2014-03-20T15:34:22", "url": "https://files.pythonhosted.org/packages/ca/4f/5c8f97e5e83522051fee1904b4889de23c92ecd038198491aa5403211424/django-debugtools-1.1.2.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "cd79c41939781fd11114024d3d4ead96", "sha256": "3195c1e2b6bb05ead3da5d41cfce0074de220d5252d7e36b71135fbd319a123e" }, "downloads": -1, "filename": "django-debugtools-1.2.tar.gz", "has_sig": false, "md5_digest": "cd79c41939781fd11114024d3d4ead96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15043, "upload_time": "2014-07-08T07:28:36", "url": "https://files.pythonhosted.org/packages/8c/7b/f208d41aa1fc064e2316c83fa9b6ea0d91afa83b23a4f8f4f2fe080c258b/django-debugtools-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "9ccecc351489e22203b96efae8186fca", "sha256": "cb093d7582b11a9806901c98226c405d5af9458e8168f34f67cb78f8ea2395b5" }, "downloads": -1, "filename": "django_debugtools-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ccecc351489e22203b96efae8186fca", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14832, "upload_time": "2014-10-01T14:06:46", "url": "https://files.pythonhosted.org/packages/59/e0/e66bb86a100d4a95f4ee2213162ea7bd1d7e108757be1d9ea29c760f529a/django_debugtools-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c54e83fa3fc6f0834b169d3b4f906b2", "sha256": "82f9020988591365d8223e40fe180ca017007879648d942049ef3226802af84b" }, "downloads": -1, "filename": "django-debugtools-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6c54e83fa3fc6f0834b169d3b4f906b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15087, "upload_time": "2014-10-01T14:06:43", "url": "https://files.pythonhosted.org/packages/b6/19/6c19befa3f78d61c7a37bc6351cbf92c6ab7bb69c8d40da99082d4f342e9/django-debugtools-1.2.1.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "fef3e3cadcf046909879e8b2764e108d", "sha256": "e275402dae1c89f821b8fa0d5229259cab9d14b01839e72193030384564f7b3c" }, "downloads": -1, "filename": "django_debugtools-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fef3e3cadcf046909879e8b2764e108d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15098, "upload_time": "2015-04-13T14:04:25", "url": "https://files.pythonhosted.org/packages/bf/82/ec12dff94f3b9e35097d6120e5f8e3c51e9b2d93d96a19ff71c1ea4958e5/django_debugtools-1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47b4a51442f11eda94f234d6a021f902", "sha256": "ee102e4ae51b7d26e134c123469a2f11c75933ff0ae333e4abdba71abad1749e" }, "downloads": -1, "filename": "django-debugtools-1.3.tar.gz", "has_sig": false, "md5_digest": "47b4a51442f11eda94f234d6a021f902", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15204, "upload_time": "2015-04-13T14:04:22", "url": "https://files.pythonhosted.org/packages/a7/a2/8af7c1d6fcd89bccdef185edd703de5061c5084dd1fe102fb8d708d3748e/django-debugtools-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "1ae21a25b50b126929290c543cb50897", "sha256": "4c07bdb24180729d9881ceb2de8e972b58f20b7763a8cb238dcacc4b56928b24" }, "downloads": -1, "filename": "django_debugtools-1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ae21a25b50b126929290c543cb50897", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18112, "upload_time": "2015-07-29T08:05:36", "url": "https://files.pythonhosted.org/packages/61/73/21bd0083b88f6803165e5a7cb6aa9f567491d8f1884ae1c894a892862f38/django_debugtools-1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39b2c5528a07976400c1b77cd82042e7", "sha256": "085a15e751f2c4dbd02b62bcf176a345f8103881602d3807ed8921176a118f77" }, "downloads": -1, "filename": "django-debugtools-1.4.tar.gz", "has_sig": false, "md5_digest": "39b2c5528a07976400c1b77cd82042e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16880, "upload_time": "2015-07-29T08:05:33", "url": "https://files.pythonhosted.org/packages/36/64/68d1f8cf06703e9de5f3109bbaae61cd7b3837d070a2efaf219e1b1b536a/django-debugtools-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "fe1bd62bb559bb3c8a86653275cf074e", "sha256": "8723608d6fa2e798523e9b0be5b8f17276b204ef12460c08532159925686406e" }, "downloads": -1, "filename": "django_debugtools-1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe1bd62bb559bb3c8a86653275cf074e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19419, "upload_time": "2016-01-06T19:32:29", "url": "https://files.pythonhosted.org/packages/34/d8/99c2bb350b0da391e7df221b159f5a740b044c9f9b4d3508ffa42c113679/django_debugtools-1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94ac4a165431df987d84ae1b34f5f4fd", "sha256": "f1dd0b4f6dc42482b7785d7a2557816d7cd844e77a821bb2117fb95db05462ff" }, "downloads": -1, "filename": "django-debugtools-1.5.tar.gz", "has_sig": false, "md5_digest": "94ac4a165431df987d84ae1b34f5f4fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17651, "upload_time": "2016-01-06T19:32:07", "url": "https://files.pythonhosted.org/packages/9b/32/e182aa1353b6c789ff55c4da0ae1983b5f497df0354f282e98106aa8256f/django-debugtools-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "5e7d42bb2722953fd813fb161453ab10", "sha256": "b01059176a2b6724c09ff8fa48317525b8194837d47c5c31fd2ce1e4063e12eb" }, "downloads": -1, "filename": "django_debugtools-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e7d42bb2722953fd813fb161453ab10", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19518, "upload_time": "2016-02-16T11:57:33", "url": "https://files.pythonhosted.org/packages/ed/6a/1309a5de1971a2cf0a17f1f1e6e8c944fff9ec0e5a927f322456145e0f40/django_debugtools-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4da86c84054b797b336da0314af0651c", "sha256": "d7a4cf7aa4792e4dbb3fa4d9927e23bd612ee3c74688eef432c0147e3d38307f" }, "downloads": -1, "filename": "django-debugtools-1.5.1.tar.gz", "has_sig": false, "md5_digest": "4da86c84054b797b336da0314af0651c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17721, "upload_time": "2016-02-16T11:57:21", "url": "https://files.pythonhosted.org/packages/36/8b/3951231d8225301ad6709a2241bbf15d0a0ac918698c13b5e0b8e65e833b/django-debugtools-1.5.1.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "66d89051b95be97871c44a20b080fe38", "sha256": "2060fc486b8a117198ec2df9210b69059f4fea7e8ab839994e97d9ca31dcdd0b" }, "downloads": -1, "filename": "django_debugtools-1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66d89051b95be97871c44a20b080fe38", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19818, "upload_time": "2016-03-17T12:19:35", "url": "https://files.pythonhosted.org/packages/d6/a4/b6fce1c680457568119f4d8327add7a80a6da62531bdf3a68363303a70ce/django_debugtools-1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33638643774f28ac0e770c3ac0552ac3", "sha256": "175878d785aa065ddb346b9f37f79b85712ab2966b322b8e5842dcb00e1c01a8" }, "downloads": -1, "filename": "django-debugtools-1.6.tar.gz", "has_sig": false, "md5_digest": "33638643774f28ac0e770c3ac0552ac3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18061, "upload_time": "2016-03-17T12:19:06", "url": "https://files.pythonhosted.org/packages/d7/28/d382bfdf112c442cccca30665f7aa5743275c40a5d50e8177a9136ef5d02/django-debugtools-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "3ed368c2cb5cf2f6795ab19a0512040b", "sha256": "724d4652f5c5f22df9578265771f3d315b70247fa651361ffa4af1ecef735637" }, "downloads": -1, "filename": "django_debugtools-1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ed368c2cb5cf2f6795ab19a0512040b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20209, "upload_time": "2016-08-07T15:44:44", "url": "https://files.pythonhosted.org/packages/03/52/6d2e53f7b4d1ff8e79865d8352e43bb81a4f9aefbbadbe97cb23fd60b648/django_debugtools-1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef3d3541bc2b5c1f1b9be07eb76582f4", "sha256": "ac199870cea005923ff26cb2240f66a4eec5457ac517278286d6cb6db6421d9d" }, "downloads": -1, "filename": "django-debugtools-1.7.tar.gz", "has_sig": false, "md5_digest": "ef3d3541bc2b5c1f1b9be07eb76582f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18385, "upload_time": "2016-08-07T15:44:47", "url": "https://files.pythonhosted.org/packages/84/9a/e7e834e3fd94420b9cf9a3153b7812e7d367ef97ec4f045b1c337cdd3c8f/django-debugtools-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "27397d00ab6c2c9e2cece1d807a4cfec", "sha256": "706be730e0ed272b478ad6d1959ec7f17747e789350da39ac342eea25fc0ea21" }, "downloads": -1, "filename": "django_debugtools-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27397d00ab6c2c9e2cece1d807a4cfec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20145, "upload_time": "2017-01-04T10:29:22", "url": "https://files.pythonhosted.org/packages/61/2e/53e97a8a4376e29b7e2ab2f27a1b5f9980d416df0328bdcb605849c2401b/django_debugtools-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e1c0fe9b448960b584746383e16e6972", "sha256": "a4d0ef9dba14abc9dc97986996fe219b8f0156cdf140a4fb8786eeb853e31dbf" }, "downloads": -1, "filename": "django-debugtools-1.7.1.tar.gz", "has_sig": false, "md5_digest": "e1c0fe9b448960b584746383e16e6972", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18441, "upload_time": "2017-01-04T10:29:24", "url": "https://files.pythonhosted.org/packages/8f/e6/1d40935257d8964c627430818c71e5e03c4814c8693d43a32fe05459a5e4/django-debugtools-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "53aa94961709e6d1fb0ea7b49390f0ed", "sha256": "f185b4bd07916b159fca26bd16f96fd9c0e47bdfc0319e7d2720cd9289e28e5b" }, "downloads": -1, "filename": "django_debugtools-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53aa94961709e6d1fb0ea7b49390f0ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20236, "upload_time": "2017-02-03T12:14:01", "url": "https://files.pythonhosted.org/packages/28/b6/667e5ec1cbbc0ef038d8434449624683e572167357134dad0e010e00fa25/django_debugtools-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7ce78ccb5fe190ab92cf6ef4392ed16", "sha256": "dae3bbf254d2c50a29d4f36768ed44cf2a40117895cdd1e713f6644f23eecda5" }, "downloads": -1, "filename": "django-debugtools-1.7.2.tar.gz", "has_sig": false, "md5_digest": "c7ce78ccb5fe190ab92cf6ef4392ed16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18539, "upload_time": "2017-02-03T12:14:04", "url": "https://files.pythonhosted.org/packages/c8/3d/252ce831ede52bfc4c3b6c470aff49b9fb49ff9172e08ea9dcd9909a6d6f/django-debugtools-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "b263997c3ed98fe032bf21b4ef977201", "sha256": "3980b444368643144bdd22dda8970c65a07f4b8cf802aba8ba05a436579500cd" }, "downloads": -1, "filename": "django_debugtools-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b263997c3ed98fe032bf21b4ef977201", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20480, "upload_time": "2018-02-13T16:16:33", "url": "https://files.pythonhosted.org/packages/92/62/4e4b449df4c87383b56f496c5db72643861c42d76edf95e8efcf2630ae5e/django_debugtools-1.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d10dee59540c4e70ff4689be3bb5760", "sha256": "162727452c7644d7dedde4f14851c7018b921154cee00fc5417492acf499d4d9" }, "downloads": -1, "filename": "django-debugtools-1.7.3.tar.gz", "has_sig": false, "md5_digest": "2d10dee59540c4e70ff4689be3bb5760", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20762, "upload_time": "2018-02-13T16:16:35", "url": "https://files.pythonhosted.org/packages/04/5b/1772187db7fa48cd60753cfb80d75edac3d034ae567061d579303c906d49/django-debugtools-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "8baec275eaa04e355c81248a927367bd", "sha256": "9e2164c59217079df50ca2a0b6fdb39dad53b4735cd5c50fdf0db357d02eaf3e" }, "downloads": -1, "filename": "django_debugtools-1.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8baec275eaa04e355c81248a927367bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17401, "upload_time": "2019-02-11T09:14:48", "url": "https://files.pythonhosted.org/packages/00/02/e8d34a2c2f44420af828bb08563de4fa2f8b8cc66baf40496252e9ee6847/django_debugtools-1.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7421ed9f9affdfa0070d6f403ed6d0ec", "sha256": "92dea386f4795150508f83a880a369a11146e18060823b9d347e1e6185361e75" }, "downloads": -1, "filename": "django-debugtools-1.7.4.tar.gz", "has_sig": false, "md5_digest": "7421ed9f9affdfa0070d6f403ed6d0ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20801, "upload_time": "2019-02-11T09:14:50", "url": "https://files.pythonhosted.org/packages/c0/e8/313a2343b1e6117fc247db48294af8acf3fd4be65655fc192fc50c2429ab/django-debugtools-1.7.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8baec275eaa04e355c81248a927367bd", "sha256": "9e2164c59217079df50ca2a0b6fdb39dad53b4735cd5c50fdf0db357d02eaf3e" }, "downloads": -1, "filename": "django_debugtools-1.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8baec275eaa04e355c81248a927367bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17401, "upload_time": "2019-02-11T09:14:48", "url": "https://files.pythonhosted.org/packages/00/02/e8d34a2c2f44420af828bb08563de4fa2f8b8cc66baf40496252e9ee6847/django_debugtools-1.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7421ed9f9affdfa0070d6f403ed6d0ec", "sha256": "92dea386f4795150508f83a880a369a11146e18060823b9d347e1e6185361e75" }, "downloads": -1, "filename": "django-debugtools-1.7.4.tar.gz", "has_sig": false, "md5_digest": "7421ed9f9affdfa0070d6f403ed6d0ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20801, "upload_time": "2019-02-11T09:14:50", "url": "https://files.pythonhosted.org/packages/c0/e8/313a2343b1e6117fc247db48294af8acf3fd4be65655fc192fc50c2429ab/django-debugtools-1.7.4.tar.gz" } ] }