{ "info": { "author": "S\u00f6ren Berger", "author_email": "soeren.berger@u1337.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3" ], "description": "# django-pipstatus\n\ndjango-pipstatus provides simple templatetag and page that shows the status of your pip installation.\n\n## Installation\n\nAdd 'pipstatus' to your INSTALLED_APP.\n\n## Setup dedicated URL\n\nadd pipstatus.url to your urls.py\n\n```python\n urlpatterns = [\n url(r'^admin/', include(admin.site.urls)),\n url(r'^pipstatus/', include(pipstatus.urls)),\n]\n```\n\n## Setup own view\n\nDefine a view and a template somewhere\n\n```python\ndef pipconfig2(request):\n return render(request, \"my_template.html\")\n```\n```html\n{% extends \"base.html\" %}\n{% block content %}\n