Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove references to python-jose #3847

Merged
merged 3 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ example here let us say it is a `SQLAlchemy <https://docs.sqlalchemy.org/>`_ mod
# ... other fields follow, but we only require id for this example

We will also need some utility methods to encode and decode tokens. To this end we will use
the `python-jose <https://github.com/mpdavis/python-jose>`_ library. We will also create a Pydantic model representing a
the `pyjwt <https://pyjwt.readthedocs.io/en/stable/>`_ library. We will also create a Pydantic model representing a
JWT Token:

.. dropdown:: Click to see the JWT utility methods and Token model
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/security/jwt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ JWT Security Backends
=====================

Litestar offers optional JWT based security backends. To use these make sure to install the
`python-jose <https://github.com/mpdavis/python-jose>`_ and `cryptography <https://github.com/pyca/cryptography>`_
`pyjwt <https://pyjwt.readthedocs.io/en/stable/>`_ and `cryptography <https://github.com/pyca/cryptography>`_
packages, or simply install Litestar with the ``jwt``
`extra <https://packaging.python.org/en/latest/specifications/dependency-specifiers/#extras>`_:

Expand Down
Loading
Loading