Skip to main content

Lightweight JWT verification for AuthFort-powered microservices

Project description

AuthFort

authfort-service

PyPI Coverage Python License: MIT Docs

Lightweight JWT verification for microservices powered by AuthFort.

Install

pip install authfort-service[fastapi]

Quick Start

from authfort_service import ServiceAuth
from fastapi import FastAPI, Depends

service = ServiceAuth(
    jwks_url="https://auth.example.com/.well-known/jwks.json",
    issuer="authfort",
)

app = FastAPI()

@app.get("/api/data")
async def protected(user=Depends(service.current_user)):
    return {"user_id": user.sub, "roles": user.roles}

@app.get("/api/admin")
async def admin_only(user=Depends(service.require_role("admin"))):
    return {"message": "admin access"}

Features

  • JWKS fetching with automatic caching and refresh
  • JWT signature verification (RS256)
  • Token introspection client (optional real-time validation)
  • FastAPI integration (current_user, require_role dependencies)
  • No database required

With Introspection

service = ServiceAuth(
    jwks_url="https://auth.example.com/.well-known/jwks.json",
    issuer="authfort",
    introspect_url="https://auth.example.com/auth/introspect",
    introspect_secret="shared-secret",
)

# Real-time validation (checks ban status, token version, fresh roles)
result = await service.introspect(token)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

authfort_service-0.0.20.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

authfort_service-0.0.20-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file authfort_service-0.0.20.tar.gz.

File metadata

  • Download URL: authfort_service-0.0.20.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for authfort_service-0.0.20.tar.gz
Algorithm Hash digest
SHA256 8ce81209142444e34489b98aea145ccc0a489503950be64da49db49d3f7fec00
MD5 4b6430b6d57663124dda4bf330eae7b4
BLAKE2b-256 1b57d15d2712a478d3e8b1e56f3293adf51ef99882d7490f60770722f1b46838

See more details on using hashes here.

File details

Details for the file authfort_service-0.0.20-py3-none-any.whl.

File metadata

  • Download URL: authfort_service-0.0.20-py3-none-any.whl
  • Upload date:
  • Size: 9.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for authfort_service-0.0.20-py3-none-any.whl
Algorithm Hash digest
SHA256 385ad700e5310f23dc911a39cf0bcd87d0e0891c4322b9b2a42b591a557ecd9b
MD5 c080e8787463050747aa3083bdbee95a
BLAKE2b-256 dd0afad00ea9d6075811d7471e94db9ebf9266bb0a038da6345b826a7ea319c1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page