We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1900857 commit 189c256Copy full SHA for 189c256
docs/index.rst
@@ -30,8 +30,6 @@ Example Usage
30
31
>>> import jwt
32
>>> encoded_jwt = jwt.encode({"some": "payload"}, "secret", algorithm="HS256")
33
- >>> print(encoded_jwt)
34
- eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzb21lIjoicGF5bG9hZCJ9.4twFt5NiznN84AWoo1d7KO1T_yoc0Z6XOpOVswacPZg
35
>>> jwt.decode(encoded_jwt, "secret", algorithms=["HS256"])
36
{'some': 'payload'}
37
0 commit comments