Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jwt | 6,970 | 6,817 | 535 | a day ago | 51 | August 19, 2022 | 10 | bsd-3-clause | PHP | |
A simple library to work with JSON Web Token and JSON Web Signature | ||||||||||
Pyjwt | 4,593 | 9,443 | 1,606 | 5 days ago | 45 | May 12, 2022 | 19 | mit | Python | |
JSON Web Token implementation in Python | ||||||||||
Jsmn | 3,265 | 22 days ago | 89 | mit | C | |||||
Jsmn is a world fastest JSON parser/tokenizer. This is the official repo replacing the old one at Bitbucket | ||||||||||
Node Jwt Simple | 1,320 | 7,828 | 569 | 2 years ago | 13 | March 30, 2019 | 33 | mit | JavaScript | |
JWT(JSON Web Token) encode and decode module for node.js | ||||||||||
Vault Ui | 1,299 | 5 years ago | 3 | October 04, 2017 | 50 | other | JavaScript | |||
Vault-UI — A beautiful UI to manage your Vault, written in React | ||||||||||
Frangipanni | 1,156 | 5 months ago | 6 | April 10, 2021 | 6 | mit | Go | |||
Program to convert lines of text into a tree structure. | ||||||||||
Token Lists | 1,030 | 51 | 13 days ago | 30 | June 16, 2022 | 133 | mit | TypeScript | ||
📚 The Token Lists specification | ||||||||||
Spring Boot Jwt | 1,022 | a year ago | mit | Java | ||||||
JWT auth service using Spring Boot, Spring Security and MySQL | ||||||||||
Jwt | 844 | 6 years ago | mit | Java | ||||||
webapp用户身份认证方案 JSON WEB TOKEN 实现Deme示例,Java版 | ||||||||||
Jsonwebtoken.swift | 659 | 31 | 4 years ago | 14 | November 06, 2017 | 26 | bsd-2-clause | Swift | ||
Swift implementation of JSON Web Token (JWT). |
A Python implementation of RFC 7519. Original implementation was written by @progrium.
![]() |
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/developers. |
Install with pip:
$ pip install PyJWT
>>> import jwt
>>> encoded = jwt.encode({"some": "payload"}, "secret", algorithm="HS256")
>>> print(encoded)
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg
>>> jwt.decode(encoded, "secret", algorithms=["HS256"])
{'some': 'payload'}
View the full docs online at https://pyjwt.readthedocs.io/en/stable/
You can run tests from the project root after cloning with:
$ tox