Skip to content

Installation

from package manager (prefered)

pip install fastjwt
poetry add fastjwt
pipenv install fastjwt

fastjwt is compatible with Python 3.9+. The current dependencies are pydantic and pyjwt[crypto].

Note

The pyjwt[crypto] will be switched to pyjwt to avoid adding the cryptography library if not needed. Next release should allow for pip install fastjwt[crypto]

Note

FastAPI, while required for fastjwt, is not declared as a dependency and must be installed prior with pip install fastapi

from repository

pip install git+git://github.com/ocarinow/fastjwt.git@[branch]#egg=fastjwt
poetry add https://github.com/ocarinow/fastjwt.git
pipenv install git+https://github.com/ocarinow/fastjwt.git@[branch]#egg=fastjwt

from GitHub

git clone https://github.com/ocarinow/fastjwt.git
git clone git@github.com:ocarinow/fastjwt.git
gh repo clone ocarinow/fastjwt