JSON Web Token implementation in Python
Project Links
Meta
Author: Jose Padilla
Requires Python: >=3.9
Classifiers
Development Status
- 5 - Production/Stable
Intended Audience
- Developers
License
- OSI Approved :: MIT License
Natural Language
- English
Programming Language
- Python
- Python :: 3
- Python :: 3 :: Only
- Python :: 3.9
- Python :: 3.10
- Python :: 3.11
- Python :: 3.12
- Python :: 3.13
Topic
- Utilities
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/signup. |
Installing
Install with pip:
$ pip install PyJWT
Usage
>>> import jwt
>>> encoded = jwt.encode({"some": "payload"}, "secret", algorithm="HS256")
>>> print(encoded)
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg
>>> jwt.decode(encoded, "secret", algorithms=["HS256"])
{'some': 'payload'}
Documentation
View the full docs online at https://pyjwt.readthedocs.io/en/stable/
Tests
You can run tests from the project root after cloning with:
$ tox
Nov 28, 2024
2.10.1
Nov 17, 2024
2.10.0
Aug 01, 2024
2.9.0
Jul 18, 2023
2.8.0
May 09, 2023
2.7.0
Oct 20, 2022
2.6.0
Sep 17, 2022
2.5.0
May 12, 2022
2.4.0
Oct 16, 2021
2.3.0
Oct 06, 2021
2.2.0
Apr 28, 2021
2.1.0
Jan 17, 2021
2.0.1
Dec 22, 2020
2.0.0
Dec 20, 2020
2.0.0a2
Nov 02, 2020
2.0.0a1
Dec 07, 2018
1.7.1
Dec 02, 2018
1.7.0
May 24, 2018
1.6.4
May 19, 2018
1.6.3
Mar 18, 2018
1.6.1
Mar 03, 2018
1.6.0
Sep 05, 2017
1.5.3
Jun 22, 2017
1.5.2
Jun 22, 2017
1.5.1
Apr 19, 2017
1.5.0
Aug 08, 2016
1.4.2
Jul 13, 2016
1.4.1
Jul 17, 2015
1.4.0
May 22, 2015
1.3.0
Apr 15, 2015
1.1.0
Mar 26, 2015
1.0.1
Mar 18, 2015
1.0.0
Feb 18, 2015
0.4.3
Feb 18, 2015
0.4.2
Jan 08, 2015
0.4.1
Dec 23, 2014
0.4.0
Dec 13, 2014
0.3.2
Dec 03, 2014
0.3.1
Oct 22, 2014
0.3.0
Oct 16, 2014
0.2.3
Apr 28, 2014
0.2.1
Mar 26, 2014
0.2.0
Feb 08, 2014
0.1.9
Jan 23, 2014
0.1.8
Jan 17, 2014
0.1.7
Aug 18, 2013
0.1.6
Oct 29, 2012
0.1.5
Apr 06, 2011
0.1.4
Apr 05, 2011
0.1.3
Mar 22, 2011
0.1.2
Feb 24, 2011
0.1.1