Django global context
Project description
django-g
Django global context to get current request from anywhere in your application.
Many scenarios need the current request but Django don't have it accessible. They expect that your application implement a middleware to use the request, but it is burdensome and not reusable.
Other packages, like django-threadlocals do the same thing with threadlocals, but it doesn't work on the async world.
How to install
$ pip install django-g
How to use
Add django_g.middleware.RequestMiddleware
to your settings MIDDLEWARE
. It
is a small middleware just to capture the current request and save to global
context, ordering probably doesn't matter because any other middleware
already have access to the request.
MIDDLEWARE = [
"django_g.middleware.RequestMiddleware",
...
]
from django_g import get_current_request
def your_func():
request = get_current_request()
# Use the request here. Be careful and handle when `request=None`.
protip It is not a good idea to get the request everywhere, because you're coupling the framework specifics with your logic, so use this package only to get the request where you don't have a better way.
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
Built Distribution
File details
Details for the file django-g-0.0.2.tar.gz
.
File metadata
- Download URL: django-g-0.0.2.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3eb6e33a95849e4159c211e792ae2801f909660737eca4551360ac2bc7a65366 |
|
MD5 | f4d2234d63dbc7f058876b7072cf80da |
|
BLAKE2b-256 | 5b8bfb5f3d59f218198f679c81ed18fa6440cfb2b6faa313521b6604c1447f03 |
Provenance
File details
Details for the file django_g-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: django_g-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7c10f5cfcdb321c34f8b3e144759d6536c8eb16144d57b179b96191e5c94c0e |
|
MD5 | 398720aabcd69eb9bf4f3e2ff2bc12bc |
|
BLAKE2b-256 | 0fca2d6742407598d098f1adbaa3e55e961a0c6f3f3c9efa3df1db77256befee |