Ravenports generated: 09 Jul 2023 03:52
[ravenports.git] / bucket_A0 / python-itsdangerous
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               python-itsdangerous
4 VERSION=                2.1.2
5 KEYWORDS=               python
6 VARIANTS=               py310 v11
7 SDESC[py310]=           Trusted data handlers for unsafe env (3.10)
8 SDESC[v11]=             Trusted data handlers for unsafe env (3.11)
9 HOMEPAGE=               https://palletsprojects.com/p/itsdangerous/
10 CONTACT=                Python_Automaton[python@ironwolf.systems]
11
12 DOWNLOAD_GROUPS=        main
13 SITES[main]=            PYPIWHL/68/5f/447e04e828f47465eeab35b5d408b7ebaaaee207f48b7136c5a7267a30ae
14 DISTFILE[1]=            itsdangerous-2.1.2-py3-none-any.whl:main
15 DF_INDEX=               1
16 SPKGS[py310]=           single
17 SPKGS[v11]=             single
18
19 OPTIONS_AVAILABLE=      PY310 PY311
20 OPTIONS_STANDARD=       none
21 VOPTS[py310]=           PY310=ON PY311=OFF
22 VOPTS[v11]=             PY310=OFF PY311=ON
23
24 DISTNAME=               itsdangerous-2.1.2.dist-info
25
26 GENERATED=              yes
27
28 [PY310].USES_ON=                        python:py310,wheel
29
30 [PY311].USES_ON=                        python:v11,wheel
31
32 [FILE:1809:descriptions/desc.single]
33 ItsDangerous
34 ============
35
36 ... so better sign this
37
38 Various helpers to pass data to untrusted environments and to get it
39 back safe and sound. Data is cryptographically signed to ensure that a
40 token has not been tampered with.
41
42 It's possible to customize how data is serialized. Data is compressed as
43 needed. A timestamp can be added and verified automatically while
44 loading a token.
45
46 Installing
47 ----------
48
49 Install and update using `pip`_:
50
51 .. code-block:: text
52
53     pip install -U itsdangerous
54
55 .. _pip: https://pip.pypa.io/en/stable/getting-started/
56
57 A Simple Example
58 ----------------
59
60 Here's how you could generate a token for transmitting a user's id and
61 name between web requests.
62
63 .. code-block:: python
64
65     from itsdangerous import URLSafeSerializer
66     auth_s = URLSafeSerializer("secret key", "auth")
67     token = auth_s.dumps({"id": 5, "name": "itsdangerous"})
68
69     print(token)
70     # eyJpZCI6NSwibmFtZSI6Iml0c2Rhbmdlcm91cyJ9.6YP6T0BaO67XP--9UzTrmurXSmg
71
72     data = auth_s.loads(token)
73     print(data["name"])
74     # itsdangerous
75
76 Donate
77 ------
78
79 The Pallets organization develops and supports ItsDangerous and other
80 popular packages. In order to grow the community of contributors and
81 users, and allow the maintainers to devote more time to the projects,
82 `please donate today`_.
83
84 .. _please donate today: https://palletsprojects.com/donate
85
86 Links
87 -----
88
89 -   Documentation: https://itsdangerous.palletsprojects.com/
90 -   Changes: https://itsdangerous.palletsprojects.com/changes/
91 -   PyPI Releases: https://pypi.org/project/ItsDangerous/
92 -   Source Code: https://github.com/pallets/itsdangerous/
93 -   Issue Tracker: https://github.com/pallets/itsdangerous/issues/
94 -   Website: https://palletsprojects.com/p/itsdangerous/
95 -   Twitter: https://twitter.com/PalletsTeam
96 -   Chat: https://discord.gg/pallets
97
98
99 [FILE:114:distinfo]
100 2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44        15749 itsdangerous-2.1.2-py3-none-any.whl
101