tauth

FastAPI Compatible Authentication


Install
pip install tauth==1.2.1

Documentation

TAuth

FastAPI-compatible authentication "middleware" for Teia Web Services. Pronounced tee-auth.

Usage

To use a tauth API key in your FastAPI app:

from tauth.dependencies import security
app = FastAPI()
security.init_app(app)

To host the clients and clients/tokens CRUD in your app:

from tauth.routes import get_router
app = FastAPI()
app.include_router(get_router(prefix=None))