pip install python-jose
python
from jose import jwt, jws
python
python
token = jwt.encode(payload, key, algorithm=algorithm)
python
try:
data = jwt.decode(token, key, algorithms=[algorithm])
print(data)
except jwt.JWTError:
python
from jose import jwt, jws
token = jwt.encode(payload, key, algorithm=algorithm)
try:
data = jwt.decode(token, key, algorithms=[algorithm])
print(data)
except jwt.JWTError: