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

https://github.com/andreax79/python-encrypted-cookiejar


https://github.com/andreax79/python-encrypted-cookiejar

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

python-encrypted-cookiejar
==========================

Fernet-encrypted cookie jar

Installation
------------
::

pip install encrypted_cookiejar

Usage
-----

::

from encrypted_securid import EncryptedCookieJar

cookies = EncryptedCookieJar()
cookies.load('encrypted_cookie_jar', password=password)
r = requests.get(url, cookies=cookies)
cookies.save('encrypted_cookie_jar', password=password)

Links
~~~~~

* `Project home page (GitHub) `_
* `Documentation (Read the Docs) `_