wsgi-django-media

WSGI middleware to serve media for faster Django development


License
MIT
Install
pip install wsgi-django-media==1.0.0

Documentation

WSGI Django Media

Really simple wsgi middleware to serve media files before hitting the Django app. Only enabled when Django DEBUG is True. This can really speed up your local development process when a page loads a lot of media files.

Status

https://readthedocs.org/projects/wsgi-django-media/badge/?version=latest https://travis-ci.org/mvantellingen/wsgi-django-media.svg?branch=master http://codecov.io/github/mvantellingen/wsgi-django-media/coverage.svg?branch=master

Getting started

Using this module is really simple. In Django for example edit the wsgi.py file and add the following to the end of the file.

from wsgi_django_media import DjangoMedia
application = DjangoMedia(application)

Installation

You can install the latest version using pip:

pip install wsgi-django-media