import jwtsecret = '234123412341234';v = {'iss': 'hello world'}; token = jwt.encode( v, secret) print(f'{token}') decoded = jwt.decode( token, secret) print( f'{decoded}')