Skip to main content

A modular authentication system for FastAPI with OAuth2, JWT, and password recovery

Project description

fastapi-authly

PyPI version Python versions License

A modular authentication system for FastAPI applications. Provides complete user authentication with OAuth2, JWT tokens, password recovery, and more.

โœจ Features

  • ๐Ÿ” OAuth2 Password Flow - Standard OAuth2 authentication
  • ๐ŸŽซ JWT Token Management - Secure token creation and validation
  • ๐Ÿ”‘ Password Recovery - Email-based password reset
  • ๐Ÿ‘ค User Management - Registration, profile management
  • ๐Ÿ“ง Email Verification - User email verification system
  • ๐Ÿ”„ Token Refresh - Refresh token functionality
  • ๐Ÿงฉ Modular Design - Easy to integrate and configure
  • ๐Ÿ›ก๏ธ Security First - Built with security best practices
  • ๐Ÿ“š Type Hints - Full type annotation support

๐Ÿš€ Quick Start (Tortoise + Postgres ้ป˜่ฎคๅฎž็Žฐ)

Installation

uv pip install fastapi-authly
# or
pip install fastapi-authly

Minimal FastAPI App (uses default TortoiseUserRepository)

from fastapi import FastAPI
from tortoise.contrib.fastapi import register_tortoise
from fastapi_authly import (
    AuthConfig,
    AuthDependencyConfig,
    create_auth_router,
)
from fastapi_authly.contrib.tortoise_pg import TortoiseUserRepository

app = FastAPI()

# 1) init Tortoise (Postgres)
register_tortoise(
    app,
    db_url="postgres://user:password@localhost:5432/mydb",
    modules={"models": ["fastapi_authly.models.user"]},
    generate_schemas=True,
    add_exception_handlers=True,
)

# 2) assemble auth router with default repo (can override via dependencies)
config = AuthConfig(token_url="login")  # keep token_url aligned with /login route
deps = AuthDependencyConfig(user_repository=TortoiseUserRepository())

auth_router = create_auth_router(config=config, dependencies=deps)
app.include_router(auth_router)

# Optional: Setup Scalar API documentation (static resources included, no manual setup needed)
from fastapi_authly import setup_scalar_docs
setup_scalar_docs(app, docs_url="/docs", static_url="/static")

Advanced Usage (custom implementations)

from fastapi_authly import AuthConfig, AuthDependencyConfig, create_auth_router
from fastapi_authly.interfaces import UserRepository, Mailer

class MyRepo(UserRepository):
    async def get_by_name(self, username: str): ...
    async def get_by_id(self, user_id: str | int): ...
    async def create_user(self, user): ...
    async def to_public(self, user): ...

class MyMailer(Mailer):
    async def send_password_reset(self, request, token): ...
    async def send_verification(self, email, token): ...

config = AuthConfig(router_prefix="/api/auth", token_url="login")
deps = AuthDependencyConfig(
    user_repository=MyRepo(),
    mailer=MyMailer(),
)
auth_router = create_auth_router(config=config, dependencies=deps)

๐Ÿ“š API Documentation

fastapi-authly includes built-in Scalar API documentation support with all necessary static resources:

from fastapi import FastAPI
from fastapi_authly import setup_scalar_docs

app = FastAPI(title="My API")

# One line to enable Scalar documentation
# Automatically mounts static files to /static and creates docs page at /docs
setup_scalar_docs(app)

# Custom configuration
setup_scalar_docs(
    app,
    docs_url="/api-docs",      # Custom docs URL
    static_url="/assets",      # Custom static files prefix
    title="Custom API Docs",   # Custom title
    openapi_url="/openapi.json" # Custom OpenAPI schema URL
)

๐Ÿ“‹ API Endpoints

Authentication

  • POST /auth/login - Login and get access token (+optional refresh)
  • POST /auth/token/verify - Verify token validity
  • POST /auth/token/refresh - Refresh access token

User Management

  • POST /auth/register - User registration
  • GET /auth/me - Get current user info

Password Management

  • POST /auth/password/reset-request - Request password reset
  • POST /auth/password/reset - Reset password with token

๐Ÿ”ง Configuration

AuthConfig Parameters

Parameter Type Default Description
secret_key str "your-secret-key-change-in-production" JWT secret key
algorithm str "HS256" JWT algorithm
access_token_expire_minutes int 30 Access token expiration
refresh_token_expire_days int 7 Refresh token expiration
router_prefix str "/auth" API route prefix
router_tags List[str] ["authentication"] API tags
token_url str "token" OAuth2 token path (set to "login" to match default route)
enable_password_recovery bool True Enable password recovery
enable_user_registration bool True Enable user registration
enable_token_refresh bool True Enable token refresh
enable_html_content bool True Allow HTML in responses
email_from str "noreply@example.com" Email sender
email_from_name str "Auth System" Email sender name
password_reset_url_template str Template URL Password reset URL
verification_url_template str Template URL Email verification URL

๐Ÿ—๏ธ Architecture

fastapi_authly/
โ”œโ”€โ”€ auth.py                    # Main authentication module (routes)
โ”œโ”€โ”€ schemas/                   # Pydantic schemas (request/response models)
โ”‚   โ””โ”€โ”€ user.py
โ”œโ”€โ”€ models/                    # DB models (e.g., Tortoise ORM)
โ”‚   โ””โ”€โ”€ user.py
โ”œโ”€โ”€ contrib/
โ”‚   โ””โ”€โ”€ tortoise_pg.py         # Default Tortoise Postgres repository
โ”œโ”€โ”€ core/                      # Core functionality
โ”‚   โ”œโ”€โ”€ config.py              # Settings & dependency container
โ”‚   โ”œโ”€โ”€ security.py            # Token + password utilities
โ”‚   โ””โ”€โ”€ __init__.py
โ”œโ”€โ”€ interfaces.py              # Protocols (UserRepository, Mailer, etc.)
โ”œโ”€โ”€ __init__.py                # Package exports
โ””โ”€โ”€ __about__.py               # Version info

๐Ÿ”Œ Integration Examples

# FastAPI + Tortoise + Postgres (default repo)
from fastapi import FastAPI
from tortoise.contrib.fastapi import register_tortoise
from fastapi_authly import AuthConfig, AuthDependencyConfig, create_auth_router
from fastapi_authly.contrib.tortoise_pg import TortoiseUserRepository

app = FastAPI()

register_tortoise(
    app,
    db_url="postgres://user:password@localhost:5432/mydb",
    modules={"models": ["fastapi_authly.models.user"]},
    generate_schemas=True,
    add_exception_handlers=True,
)

config = AuthConfig(token_url="login")
deps = AuthDependencyConfig(user_repository=TortoiseUserRepository())
app.include_router(create_auth_router(config=config, dependencies=deps))

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

๐Ÿ“ž Support

If you have any questions or need help:

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

fastapi_authly-0.1.4.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

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

fastapi_authly-0.1.4-py3-none-any.whl (913.5 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_authly-0.1.4.tar.gz.

File metadata

  • Download URL: fastapi_authly-0.1.4.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"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":null}

File hashes

Hashes for fastapi_authly-0.1.4.tar.gz
Algorithm Hash digest
SHA256 73007e5f6da5673b41582ff1d003c243c47d26fa7bd47a7c49968ce8ae3f2a4e
MD5 3ff379961184f8ef0a30a8811af0d987
BLAKE2b-256 eca45d86805ef9ebf6ac9d43ddb2f0d2b0dcdd84589b0cf04c55bbb7b4c0c005

See more details on using hashes here.

File details

Details for the file fastapi_authly-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: fastapi_authly-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 913.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"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":null}

File hashes

Hashes for fastapi_authly-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ee7bf9b9c2168cc20a3f1359e15b857baec9b687426209dbf35c2068779aae8a
MD5 baf97fb131f6294a20cc3fa900eb17c1
BLAKE2b-256 43087cff8721658dc44ce287fa1c3941e769dc78d615302aa7b9db7b44ee8fcc

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