python-itsdangerous
Port variant py38
Summary Trusted data handlers for unsafe env (PY38)
Package version 2.0.1
Homepage https://palletsprojects.com/p/itsdangerous/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants py39
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 18 MAY 2021, 02:44:19 UTC
Port created 27 SEP 2017, 23:06:09 UTC
Subpackage Descriptions
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. Installing ---------- Install and update using `pip`_: .. code-block:: text pip install -U itsdangerous .. _pip: https://pip.pypa.io/en/stable/quickstart/ A Simple Example ---------------- Here's how you could generate a token for transmitting a user's id and name between web requests. .. code-block:: 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 Links ----- - Documentation: https://itsdangerous.palletsprojects.com/ - Changes: https://itsdangerous.palletsprojects.com/changes/ - PyPI Releases: https://pypi.org/project/ItsDangerous/ - Source Code: https://github.com/pallets/itsdangerous/ - Issue Tracker: https://github.com/pallets/itsdnagerous/issues/ - Website: https://palletsprojects.com/p/itsdangerous/ - Twitter: https://twitter.com/PalletsTeam - Chat: https://discord.gg/pallets
Configuration Switches (platform-specific settings discarded)
PY38 ON Build using Python 3.8 PY39 OFF Build using Python 3.9
Package Dependencies by Type
Build (only) python-pip:single:py38
autoselect-python:single:standard
Build and Runtime python38:single:standard
Download groups
main mirror://PYPIWHL/9c/96/26f935afba9cd6140216da5add223a0c465b99d0f112b68a4ca426441019
Distribution File Information
5174094b9637652bdb841a3029700391451bd092ba3db90600dea710ba28e97c 18326 itsdangerous-2.0.1-py3-none-any.whl
Ports that require python-itsdangerous:py38
python-Flask:py38 Lightweight WSGI web application framework (PY38)