/fastapi-gssapi

Primary LanguagePythonApache License 2.0Apache-2.0

fastapi-gssapi

ASGI Middleware and FastAPI Dependency for adding Kerberos/GSS authentication to FastAPI

Installation

TBD on packaging

Usage

Middleware

See the FastAPI Advanced Middleware documentation

basic:

from fastapi import FastAPI
from fastapi_gssapi import GSSAPIMiddleware
app = FastAPI()
app.add_middleware(GSSAPIMiddleware)

Dependency

See the example app