https://github.com/andreax79/python-encrypted-cookiejar
https://github.com/andreax79/python-encrypted-cookiejar
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreax79/python-encrypted-cookiejar
- Owner: andreax79
- License: mit
- Created: 2020-07-29T10:22:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-29T15:17:47.000Z (almost 6 years ago)
- Last Synced: 2025-09-22T14:42:42.670Z (9 months ago)
- Language: Python
- Size: 173 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: changelog.txt
- License: LICENSE
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) `_