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.7.tar.gz (4.3 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.7-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fastapi_authly-0.1.7.tar.gz
  • Upload date:
  • Size: 4.3 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.7.tar.gz
Algorithm Hash digest
SHA256 98089b68066f5310878350506d99bd5618ba55ee200a4302a4fa92ea8b198c76
MD5 13994e172c82c1876b13296c3584a3fa
BLAKE2b-256 5541be132a4c7773b47c726ec8c6e299c2e5b4925cc1942d0d9b99437e9d1264

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fastapi_authly-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 a908c72a1da7117f04a4b49f8bf4a17786b4954897b5624179520ea1e005aff1
MD5 c5bf6c2903ee447cfee5a787135aeb4d
BLAKE2b-256 c0bcae051c709214361079a236f9926cb555221d3dc7f77c613b98a80119b158

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