pip install pyjwt
import jwt
encoded_jwt = jwt.encode({페이로드에 담을 정보}, '시크릿키', algorithm='')
secret_key와 암호화 알고리즘 방식은 절대로 노출되어선 안된다
디코딩 방법:
jwt.decode(encoded_jwt, 'secret_key', algorithm='HS256')
예시) encoded_jwt = jwt.encode({'user-id' :5}, 'secret', algorithm='HS256')
jwt.decode(encoded_jwt, 'secret', algorithm='HS256')