forked from s434650/CatOrNot
99 lines
3.0 KiB
Plaintext
99 lines
3.0 KiB
Plaintext
Metadata-Version: 2.1
|
|
Name: itsdangerous
|
|
Version: 1.1.0
|
|
Summary: Various helpers to pass data to untrusted environments and back.
|
|
Home-page: https://palletsprojects.com/p/itsdangerous/
|
|
Author: Armin Ronacher
|
|
Author-email: armin.ronacher@active-4.com
|
|
Maintainer: Pallets Team
|
|
Maintainer-email: contact@palletsprojects.com
|
|
License: BSD
|
|
Project-URL: Documentation, https://itsdangerous.palletsprojects.com/
|
|
Project-URL: Code, https://github.com/pallets/itsdangerous
|
|
Project-URL: Issue tracker, https://github.com/pallets/itsdangerous/issues
|
|
Platform: UNKNOWN
|
|
Classifier: Development Status :: 5 - Production/Stable
|
|
Classifier: Intended Audience :: Developers
|
|
Classifier: License :: OSI Approved :: BSD License
|
|
Classifier: Operating System :: OS Independent
|
|
Classifier: Programming Language :: Python
|
|
Classifier: Programming Language :: Python :: 2
|
|
Classifier: Programming Language :: Python :: 2.7
|
|
Classifier: Programming Language :: Python :: 3
|
|
Classifier: Programming Language :: Python :: 3.4
|
|
Classifier: Programming Language :: Python :: 3.5
|
|
Classifier: Programming Language :: Python :: 3.6
|
|
Classifier: Programming Language :: Python :: 3.7
|
|
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
|
|
|
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
|
|
-----
|
|
|
|
* Website: https://palletsprojects.com/p/itsdangerous/
|
|
* Documentation: https://itsdangerous.palletsprojects.com/
|
|
* License: `BSD <https://github.com/pallets/itsdangerous/blob/master/LICENSE.rst>`_
|
|
* Releases: https://pypi.org/project/itsdangerous/
|
|
* Code: https://github.com/pallets/itsdangerous
|
|
* Issue tracker: https://github.com/pallets/itsdangerous/issues
|
|
* Test status: https://travis-ci.org/pallets/itsdangerous
|
|
* Test coverage: https://codecov.io/gh/pallets/itsdangerous
|
|
|
|
|