Common utilities for FastAPI applications
Project description
FastAPI Toolbox
中文文档 | English
A Python library that provides common utilities and features for FastAPI development, including static file cache control and advanced logging system.
Installation
uv add fastapi-toolbox
pip install fastapi-toolbox
Features
Running Server
fastapi-toolbox provides an advanced logging system based on loguru, supporting log configuration in multi-process environments.
Basic Usage
from fastapi import FastAPI
from fastapi_toolbox import logger, run_server
import uvicorn
import logging
app = FastAPI()
@app.get("/")
async def read_root():
logger.info("Hello World accessed")
return {"Hello": "World"}
if __name__ == "__main__":
def filter_sqlalchemy(record):
if record.name.startswith("sqlalchemy"):
if record.levelno < logging.ERROR:
return True
run_server(
"main:app",
host="127.0.0.1",
port=8000,
workers=1,
log_file="logs/app.log", # Log rotation
filter_callbacks=[filter_sqlalchemy]
)
Environment Variable Configuration
LOG_LEVEL: Set log level (DEBUG, INFO, WARNING, ERROR), defaults to INFOJSON_LOGS: Set to "1" to enable JSON format logs, defaults to standard format
Key Features
- Multi-process Support:
UvicornConfigensures logs work properly in multi-process environments - Auto Rotation: Supports log rotation by file size and time
- Unified Interception: Automatically intercepts standard library logging and forwards to loguru
- Flexible Configuration: Supports environment variables and code configuration
StaticFilesCache
StaticFilesCache is an enhanced version of FastAPI StaticFiles, providing configurable cache control for static files.
Basic Usage
from fastapi import FastAPI
from fastapi_toolbox import StaticFilesCache
import os
app = FastAPI()
# Example 1: Using default cache policy (cache disabled)
front_folder = os.path.join(os.path.dirname(__file__), "frontend/dist")
app.mount("/", StaticFilesCache(directory=front_folder), name="static")
# Example 2: Using custom cache policy
app.mount("/static", StaticFilesCache(
directory="static_files",
cachecontrol="max-age=3600" # Cache for 1 hour
), name="static")
Key Features
- Auto Cache Control: Automatically adds Cache-Control response headers for
.htmland.txtfiles - Configurable Policy: Customize cache behavior via
cachecontrolparameter - Full Compatibility: Inherits from FastAPI StaticFiles, retaining all original functionality
Parameters
| Parameter | Description | Default |
|---|---|---|
directory |
Static files directory path | Required |
cachecontrol |
Cache-Control header value | "no-cache, no-store, must-revalidate" |
| Other parameters | Same as standard StaticFiles | - |
Common Cache Strategies
# Disable cache (suitable for development)
cachecontrol="no-cache, no-store, must-revalidate"
# Short-term cache (suitable for frequently updated resources)
cachecontrol="max-age=3600" # 1 hour
# Long-term cache (suitable for rarely changed resources)
cachecontrol="public, max-age=86400" # 1 day
# Private cache, must revalidate
cachecontrol="private, must-revalidate"
Practical Use Cases
Suitable for scenarios where you need to serve static files for frontend SPA applications:
# Access http://127.0.0.1:8000/index.html to view the frontend page
front_folder = os.path.join(os.path.dirname(__file__), "frontend/dist")
app.mount("/", StaticFilesCache(directory=front_folder), name="static")
With this configuration, HTML files will not be cached by the browser, ensuring users always get the latest version of the frontend application.
NextJSRouteMiddleware
NextJSRouteMiddleware is a middleware for handling Next.js static export routes. When a request returns 404, it attempts to find the corresponding .html file.
Basic Usage
from fastapi import FastAPI
from fastapi_toolbox import NextJSRouteMiddleware
app = FastAPI()
# Add middleware
app.add_middleware(
NextJSRouteMiddleware,
static_dir="frontend/dist",
skip_prefixes=["/api", "/static", "/docs", "/openapi.json", "/redoc"],
)
Parameters
| Parameter | Description | Default |
|---|---|---|
static_dir |
Static files directory path | Required |
skip_prefixes |
List of path prefixes to skip processing | [] |
index_file |
Default filename for root path (without extension) | "index" |
How It Works
- Requests matching
skip_prefixesare passed through directly - Other requests are processed normally
- If 404 is returned and path doesn't start with
/_next, it looks for the corresponding.htmlfile - For example:
/about→ looks forfrontend/dist/about.html - Root path
/→ looks forfrontend/dist/index.html
Practical Example
from fastapi import FastAPI
from fastapi_toolbox import NextJSRouteMiddleware, StaticFilesCache
import os
app = FastAPI()
front_folder = os.path.join(os.path.dirname(__file__), "frontend/dist")
# Add Next.js route middleware
app.add_middleware(
NextJSRouteMiddleware,
static_dir=front_folder,
skip_prefixes=[
"/api",
"/static",
"/_next",
"/docs",
"/openapi.json",
"/redoc",
"/favicon.ico",
],
)
# Mount static files
app.mount("/", StaticFilesCache(directory=front_folder), name="static")
Build
uv build
Publish
uv publish
Enter __token__ as username and then enter your PyPI token
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_toolbox-0.6.6.tar.gz.
File metadata
- Download URL: fastapi_toolbox-0.6.6.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4edb2a7b1bd5544eb54ba202faeef93adb204cc9c0bfa9f6fba80af11a8d692
|
|
| MD5 |
efe8271f421c7c62868ed94e2e697fac
|
|
| BLAKE2b-256 |
a936a83aee804c2283bf032ee4d45853f97f388f6e7726975e9d03ccab77a4f4
|
File details
Details for the file fastapi_toolbox-0.6.6-py3-none-any.whl.
File metadata
- Download URL: fastapi_toolbox-0.6.6-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3cff24dc1a731a257cd93f97e9fc89430355c6b74fc62f25bb2f37527abb5b
|
|
| MD5 |
14ee9d2062be44dc3c67439ecf99c41f
|
|
| BLAKE2b-256 |
0ad69537ac127dedaa17c71c266f19beb43905e631673e577bf0dfe944dbe91a
|