JSON Web Token library for Python 3.
Project description
python-jwt
python-jwt is a JSON Web Token (JWT) implementation in Python developed by Gehirn Inc.
Examples
import json
from jwt import (
JWT,
jwk_from_dict,
jwk_from_pem,
)
message = {
'iss': 'https://example.com/',
'sub': 'yosida95',
'iat': 1485969205,
'exp': 1485972805,
}
with open('rsa_private_key.pem', 'rb') as fh:
signing_key = jwk_from_pem(fh.read())
jwt = JWT()
compact_jws = jwt.encode(message, signing_key, 'RS256')
with open('rsa_public_key.json', 'r') as fh:
verifying_key = jwk_from_dict(json.load(fh))
message_received = jwt.decode(compact_jws, verifying_key)
assert message == message_received
Installation
You can install python-jwt with pip.
$ pip install jwt
Implementation Details
Supported Algorithms
Unsecured
none
Symmetric
HS256
HS384
HS512
Asymmetric
RS256
RS384
RS512
Supported Python Versions
Python 3.5
Python 3.6
Python 3.7
License
python-jwt is licensed under the Apache License version 2. See ./LICENSE.rst.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
jwt-0.6.0-py3-none-any.whl
(15.4 kB
view details)
File details
Details for the file jwt-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: jwt-0.6.0-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 882559a3eef299f15c17d93257bf814409b499a5315e3ff0be700f1eb89b60d9 |
|
MD5 | fc0255ac93d07116e86f8700b3a1ddec |
|
BLAKE2b-256 | b84fa119d7f3065e0974bcd4a187bbe65e2e3221b6d1f5b4465941d59c796f31 |