Safely pass data to untrusted environments and back.
Project description
… so better sign this
Various helpers to pass data to untrusted environments and to get it back safe and sound. Data is cryptographically signed to ensure that a token has not been tampered with.
It’s possible to customize how data is serialized. Data is compressed as needed. A timestamp can be added and verified automatically while loading a token.
Installing
Install and update using pip:
pip install -U itsdangerous
A Simple Example
Here’s how you could generate a token for transmitting a user’s id and name between web requests.
from itsdangerous import URLSafeSerializer
auth_s = URLSafeSerializer("secret key", "auth")
token = auth_s.dumps({"id": 5, "name": "itsdangerous"})
print(token)
# eyJpZCI6NSwibmFtZSI6Iml0c2Rhbmdlcm91cyJ9.6YP6T0BaO67XP--9UzTrmurXSmg
data = auth_s.loads(token)
print(data["name"])
# itsdangerous
Donate
The Pallets organization develops and supports ItsDangerous and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.
Links
Documentation: https://itsdangerous.palletsprojects.com/
PyPI Releases: https://pypi.org/project/ItsDangerous/
Source Code: https://github.com/pallets/itsdangerous/
Issue Tracker: https://github.com/pallets/itsdnagerous/issues/
Twitter: https://twitter.com/PalletsTeam
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for itsdangerous-2.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5174094b9637652bdb841a3029700391451bd092ba3db90600dea710ba28e97c |
|
MD5 | 5f220a8fb0b37b5ba8b436c618d5b987 |
|
BLAKE2b-256 | 9c9626f935afba9cd6140216da5add223a0c465b99d0f112b68a4ca426441019 |