An open API service indexing awesome lists of open source software.

https://github.com/dcramer/django-cookies

Drop in replacement for request.COOKIES in Django
https://github.com/dcramer/django-cookies

Last synced: 11 months ago
JSON representation

Drop in replacement for request.COOKIES in Django

Awesome Lists containing this project

README

          

A two-part middleware which modifies request.COOKIES and adds a set and delete method.

* ``set`` matches ``django.http.HttpResponse.set_cookie``
* ``delete`` matches ``django.http.HttpResponse.delete_cookie``

Installation
------------

Just modify your ``MIDDLEWARE_CLASSES`` setting, order is important here!

:
MIDDLEWARE_CLASSES = (
'djcookies.CookieMiddleware',
...
)

Usage
-----

def my_view(request):
request.COOKIES.set([args])
...
return response