Skip to content

asomas/django-context-request

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-context-request

Django middleware which provide request and g object. all of which are accessible everywhere, and thread isolation, just like used in flask.

Installing

Install and update using pip:

pip install django-context-request

Usage

  1. Add RequestContextMiddleware to MIDDLEWARE in settings.py
import django_context_request

MIDDLEWARE = [
   ...
   'django_context_request.RequestContextMiddleware',
   ...
   ] 
  1. You can get request and g objects anywhere in the project throughout the life cycle of the request. just import:
from django_context_request import request, g

why do you need this?

when your django project is big enough and the function call stack is deep. if your want to get request object in the bottom of the call stack, you need to transfer request as parameters layer-by-layer, this can help you get request directly. the request you import from django-request-context is readonly object, if your want to convey some message you can user g object, this is a writeable object. the behavior of the request and g objects is exactly the same as in the flask.

About

Django middleware which provide request and g object. all of which are accessible everywhere, and thread isolation, just like used in flask.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 100.0%