A FastAPI router implementing a tus upload protocol server, with optional dependency-injected hooks for post-upload processing.
Only depends on fastapi>=0.110 and python>=3.8.
- ⏸️ Resumable uploads via TUS protocol
- 🍰 Chunked transfer with configurable max size
- 🗃️ Metadata storage (filename, filetype)
- 🧹 Expiration & cleanup of old uploads (default retention: 5 days)
- 💉 Dependency injection for seamless validation (optional)
- 📡 Comprehensive API with download, HEAD, DELETE, and OPTIONS endpoints
Install the latest release from PyPI:
# with uv
uv add tuspyserver
# with poetry
poetry add tuspyserver
# with pip
pip install tuspyserverOr install directly from source:
git clone https://github.com/edihasaj/tuspyserver
cd tuspyserver
pip install .The main API is a single constructor that initializes the tus router. All arguments are optional, and these are their default values:
from tuspyserver import create_tus_router
tus_router = create_tus_router(
prefix="files", # route prefix (default: 'files')
files_dir="/tmp/files", # path to store files
max_size=128_849_018_880, # max upload size in bytes (default is ~128GB)
auth=noop, # authentication dependency
days_to_keep=5, # retention period
on_upload_complete=None, # upload callback
upload_complete_dep=None, # upload callback (dependency injector)
)In your main.py:
from tuspyserver import create_tus_router
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
import uvicorn
# initialize a FastAPI app
app = FastAPI()
# configure cross-origin middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
expose_headers=[
"Location",
"Upload-Offset",
"Tus-Resumable",
"Tus-Version",
"Tus-Extension",
"Tus-Max-Size",
"Upload-Expires",
"Upload-Length",
],
)
# use completion hook to log uploads
def log_upload(file_path: str, metadata: dict):
print("Upload complete")
print(file_path)
print(metadata)
# mount the tus router to our
app.include_router(
create_tus_router(
files_dir="./uploads",
on_upload_complete=log_upload,
)
)Important
Headers must be exposed for chunked uploads to work correctly.
For a comprehensive working example, see the tuspyserver example.
For applications using FastAPI's dependency injection, you can supply a factory function that returns a callback with injected dependencies. The factory can Depends() on any of your services (database session, current user, etc.).
# Define a factory dependency that injects your own services
from fastapi import Depends
from your_app.dependencies import get_db, get_current_user
# factory function
def log_user_upload(
db=Depends(get_db),
current_user=Depends(get_current_user),
) -> Callable[[str, dict], None]:
# callback function
async def handler(file_path: str, metadata: dict):
# perform validation or post-processing
await db.log_upload(current_user.id, metadata)
await process_file(file_path)
return handler
# Include router with the DI hook
app.include_router(
create_api_router(
upload_complete_dep=log_user_upload,
)
)Expired files are removed when remove_expired_files() is called. You can schedule it using your preferred background scheduler (e.g., APScheduler, cron).
from tuspyserver import create_tus_router
from apscheduler.schedulers.background import BackgroundScheduler
tus_router = create_tus_router(
days_to_keep = 23 # configure retention period; defaults to 5 days
)
scheduler = BackgroundScheduler()
scheduler.add_job(
lambda: tus_router.remove_expired_files(),
trigger='cron',
hour=1,
)
scheduler.start()You can find a complete working basic example in the examples folder.
The example consists of the following:
basic.py # backend: a tus router added to a fastapi app and runs it with uvicorn
static/index.html # frontend: a simple static HTML file using uppy (based on tus-js-client)To run it, you need to install uv and run:
uv run basic.pyThis should launch the server, and you should now be able to test uploads by browsing to http://localhost:8000/static/index.html.
Uploaded files get placed in the examples/uploads folder.
Contributions welcome! Please open issues or PRs on GitHub.
You need uv to develop the project. The project is setup as a uv workspace
where the root is the library and the examples directory is an unpackagedapplication
To release the package, follow the following steps:
- Update the version in
pyproject.tomlusing semver - Merge PR to main or push directly to main
- Open a PR to merge
main→production. - Upon merge, CI/CD will publish to PyPI.
© 2025 Edi Hasaj X