# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-itsdangerous VERSION= 2.2.0 KEYWORDS= python VARIANTS= v11 v12 SDESC[v11]= Trusted data handlers for unsafe env (3.11) SDESC[v12]= Trusted data handlers for unsafe env (3.12) HOMEPAGE= none CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4 DISTFILE[1]= itsdangerous-2.2.0-py3-none-any.whl:main DF_INDEX= 1 SPKGS[v11]= single SPKGS[v12]= single OPTIONS_AVAILABLE= PY311 PY312 OPTIONS_STANDARD= none VOPTS[v11]= PY311=ON PY312=OFF VOPTS[v12]= PY311=OFF PY312=ON DISTNAME= itsdangerous-2.2.0.dist-info GENERATED= yes [PY311].USES_ON= python:v11,wheel [PY312].USES_ON= python:v12,wheel [FILE:1108:descriptions/desc.single] # 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. ```python 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][]. [please donate today]: https://palletsprojects.com/donate [FILE:114:distinfo] c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef 16234 itsdangerous-2.2.0-py3-none-any.whl