Skip to main content

Django pipstatus

Project description

# django-pipstatus

django-pipstatus provides simple templatetag and page that shows the status of your pip installation.

## Installation

Add 'pipstatus' to your INSTALLED_APP.

## Setup dedicated URL

add pipstatus.url to your urls.py

```python
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^pipstatus/', include(pipstatus.urls)),
]
```

## Setup own view

Define a view and a template somewhere

```python
def pipconfig2(request):
return render(request, "my_template.html")
```
```html
{% extends "base.html" %}
{% block content %}
<h1>My PIP Page</h1>
{% include "pipstatus.html" %}
{% endblock %}
```

## Define your own template structure

```html
{% load pipstatus %}
{% get_pipstatus as config %}
{% for x in config.entries %}
{% if x.outdated %}
x.name is outdated!<br>
{% endif %}
{% endfor %}
```

Project details


Download files

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

Source Distribution

django-pipstatus-0.1.3.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

django_pipstatus-0.1.3-py2.py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 2 Python 3

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