Safely pass data to untrusted environments and back.
Project description
ItsDangerous
... 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.
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.
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
File details
Details for the file itsdangerous-2.2.0.tar.gz
.
File metadata
- Download URL: itsdangerous-2.2.0.tar.gz
- Upload date:
- Size: 54.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173 |
|
MD5 | a901babde35694c3577f7655010cd380 |
|
BLAKE2b-256 | 9ccb8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d |
File details
Details for the file itsdangerous-2.2.0-py3-none-any.whl
.
File metadata
- Download URL: itsdangerous-2.2.0-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef |
|
MD5 | 22e41bfb2008481e855f1693a9df4c54 |
|
BLAKE2b-256 | 049692447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4 |