Provide an endpoint to query installed python package versions
Project description
> Provide an endpoint to query installed python package versions
Usage
Installation
Install the package:
pip install django-version-endpoint
Install the application by adding it to the INSTALLED_APPS setting:
INSTALLED_APPS += ('version_endpoint',)
Set the package names, you’re interested in:
VERSION_ENDPOINT_PACKAGE_NAMES = ( 'all', 'interesting', 'packages' )
Add the url to your urls.py:
from django.conf.urls import include urlpatterns += url(r'^', include('version_endpoint.urls'))
Endpoints
versions/
You can call the “versions” endpoint to get the information about the installed package versions.
Request a content type of “application/json” and a dictionary is returned:
{ 'versions': { 'all': '1.1', 'interesting': '2.2', 'packages': '3.3' }, 'host': 'hostname' }
Otherwise a rendered html page is returned.
versions/<package_name>/
The versions endpoint can get a single package name as well to specifically return the mentioned package’s version.
Overwriting the template
In order to overwrite the html template for your needs, just create a template called “version_endpoint.html” in your project, that’s retrieved before the default one of the application. For example with the standard template loader and directory in the project’s folder under a “templates” folder. You can use the dictionary mentioned above as context for the template.
If you want to override the html response for the single package endpoint, you can do the same for the “version_endpoint_single.html” template.
Development
Makefile
This project uses a Makefile for various tasks. Some of the available tasks are listed below.
make clean - Clean build artifacts out of your project
make test - Run Tests
make plain-test - Run Tests without rebuilding the project
make sdist - Build a Python source distribution
make docs - Build the Sphinx documentation
make lint - Get a codestyle report about your code
make plain-lint - Get a codestyle report without rebuilding the project
make - Equivalent to make test lint docs sdist
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-version-endpoint-1.0.4.tar.gz
.
File metadata
- Download URL: django-version-endpoint-1.0.4.tar.gz
- Upload date:
- Size: 197.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f32378236e0bc26d8b2d8684904ddff7a98793339c5bf63e9c195404be1d677 |
|
MD5 | d3d2276d6530470c467db149689f1cf4 |
|
BLAKE2b-256 | ac08afe445680ba853eff8c05431af88d7f92c04c4dbd12bfbfe512ce276e079 |