Skip to main content

Wsgi middleware that exposes an app's version number

Project description

Adds a /version url that returns a json response of the current application version.

Example usage:

from wsgiappversion import ApplicationVersion
from my_project import MyWSGIApp

application = MyWSGIApp()
application = ApplicationVersion(application, determine_version='my_project')

The required determine_version argument is used to determine what the current version actually is. determine_version can be either a string or a callable that takes no arguments. When a string is used then the version is determined by calling pkg_resources.require(package_name). If that would not work for your application then a callable that returns the correct version can be used.

Since a package version would likely not change without an application restart we would recommend using a closure (or some other similar method of caching a value) as your callable.

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

wsgiappversion-1.0.0.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

wsgiappversion-1.0.0-py2.py3-none-any.whl (4.0 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