Middleware to make current request always available.
Project description
Overview
crequest Take care of current request is silent way.
crequest will bring you current request object of your django application from anywhere in your code.
Installing
django-crequest is available at http://pypi.python.org/pypi/django-crequest So it can be installed it by pip:
$ python pip install django-crequest
Or you can grab the latest version tarball and
$ python setup.py install
To enable django-crequest in your project
Add crequest to INSTALLED_APPS in your settings.py
Add crequest.middleware.CrequestMiddleware to MIDDLEWARE_CLASSES after the authentication and session middleware.
Supported Python versions
django-crequest currently can be run on multiple python versions:
Python 2 (2.7)
Python 3 (3.2, 3.3, 3.4)
PyPy
How to use
First import the crequest’s middleware:
from crequest.middleware import CrequestMiddleware
Get the current request ;):
current_request = CrequestMiddleware.get_request()
Done.
Some info for some folks
Set the current request in UnKnown situations:
CrequestMiddleware.set_request(request)
Return iam_request if there is no current request:
CrequestMiddleware.get_request(iam_request)
And finally delete:
CrequestMiddleware.del_request()
The middleware automatically sets/deletes the current request for HTTP requests. For other uses (management commands, scripts), you will need to do this yourself.
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
Hashes for django-crequest-2014.9.19.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0ea01d13d1320766cca1c76f17d3381ce954ab0a830b3084cbe8bf8040f35d0 |
|
MD5 | aae9ef4377d77daff6507791ac5bd8f4 |
|
BLAKE2b-256 | ea8f29c4729fb2036eedf4351c79ea2429a62e0397c4c9b24ace5c9b4a8a3a7e |