ppc64le/linux/: itsdangerous-2.1.2+ppc64le1 metadata and description

Homepage Simple index Newer version available

Safely pass data to untrusted environments and back.

author Armin Ronacher
author_email [email protected]
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/x-rst
dynamic
  • license-file
license BSD-3-Clause
license_file
  • LICENSE.rst
maintainer Pallets
maintainer_email [email protected]
project_urls
  • Donate, https://palletsprojects.com/donate
  • Documentation, https://itsdangerous.palletsprojects.com/
  • Changes, https://itsdangerous.palletsprojects.com/changes/
  • Source Code, https://github.com/pallets/itsdangerous/
  • Issue Tracker, https://github.com/pallets/itsdangerous/issues/
  • Twitter, https://twitter.com/PalletsTeam
  • Chat, https://discord.gg/pallets
requires_python >=3.7
File Tox results History
itsdangerous-2.1.2+ppc64le1-py3-none-any.whl
Size
16 KB
Type
Python Wheel
Python
3
  • Replaced 1 time(s)
  • Uploaded to ppc64le/linux by ppc64le 2026-05-05 15:37:56

… 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

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.