JSON Web Token implementation in Python
Project description
A Python implementation of RFC 7519. Original implementation was written by @progrium.
Sponsor
If you want to quickly add secure token-based authentication to Python projects, feel free to check Auth0’s Python SDK and free plan at auth0.com/overview. |
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'}
Command line
Usage:
pyjwt [options] INPUT
Decoding examples:
pyjwt --key=secret decode TOKEN pyjwt decode --no-verify TOKEN
See more options executing pyjwt --help.
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.7.1.tar.gz
(42.0 kB
view details)
Built Distribution
PyJWT-1.7.1-py2.py3-none-any.whl
(18.9 kB
view details)
File details
Details for the file PyJWT-1.7.1.tar.gz
.
File metadata
- Download URL: PyJWT-1.7.1.tar.gz
- Upload date:
- Size: 42.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
|
|
MD5 |
a4712f980c008696e13e09504120b2a0
|
|
BLAKE2b-256 |
2f38ff37a24c0243c5f45f5798bd120c0f873eeed073994133c084e1cf13b95c
|
File details
Details for the file PyJWT-1.7.1-py2.py3-none-any.whl
.
File metadata
- Download URL: PyJWT-1.7.1-py2.py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5c6eca3c2940464d106b99ba83b00c6add741c9becaec087fb7ccdefea71350e
|
|
MD5 |
634a1763b3201f7670adb981b06b1b26
|
|
BLAKE2b-256 |
878b6a9f14b5f781697e51259d81657e6048fd31a113229cf346880bb7545565
|