Use Django Middlewares right now.
Middleware is a framework of hooks into Django’s request/response processing. It is a light plugin system for altering Django’s input or output. Each middleware component is responsible for doing some specific function. You can use middleware if you want to modify the request i.e HttpRequest or you might want to alter the HttpResponse. How does […]
Use Django Middlewares right now. Read More »