JSON Web Token implementation in Python
Project description
A Python implementation of RFC 7519. Original implementation was written by @progrium.
Installing
Install with pip:
$ pip install PyJWT
Usage
>>> import jwt
>>> encoded = jwt.encode({'some': 'payload'}, 'secret', algorithm='HS256')
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg'
>>> jwt.decode(encoded, 'secret', algorithms=['HS256'])
{'some': 'payload'}
Documentation
View the full docs online at https://pyjwt.readthedocs.io/en/latest/
Tests
You can run tests from the project root after cloning with:
$ python setup.py test
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
PyJWT-1.5.0.tar.gz
(34.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
PyJWT-1.5.0-py2.py3-none-any.whl
(17.2 kB
view details)
File details
Details for the file PyJWT-1.5.0.tar.gz.
File metadata
- Download URL: PyJWT-1.5.0.tar.gz
- Upload date:
- Size: 34.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd182b728d13f04c289d9b2623d09256d356c9b4a6778018001454a954d7c54b
|
|
| MD5 |
a37c77693a38656f30d8392c52db4c7d
|
|
| BLAKE2b-256 |
53d1bc6a0296a4a63277c45ab22f4b4a58a0d2ada12d6d60905dbdc40989d8fd
|
File details
Details for the file PyJWT-1.5.0-py2.py3-none-any.whl.
File metadata
- Download URL: PyJWT-1.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad60a3fb9b393667864ed4b8abc9c3b570747f80bf77a113ead2fbaf0f0cedf3
|
|
| MD5 |
a9047f28c7f278dbe1668948ff2e82fc
|
|
| BLAKE2b-256 |
9a686b31dcb5bb193227db30a91d774ffd3e18d9e4f1a9333cb07a6528db1883
|