fast-pager
Turn your Pydantic models into filterable, sortable, paginated FastAPI query parameters — automatically.
fast-pager reads the Pydantic models you already use in your FastAPI routes and
generates type-safe query parameters for filtering, sorting and pagination.
Those parameters show up in your OpenAPI docs for free, and compile down to a
real database query (MongoDB first, more backends later).
class User(BaseModel):
name: str
age: int
@app.get("/users")
async def list_users(q: FilterQuery[User] = FilterDepends(User)):
return await db.users.find(q.to_mongo()).to_list(None)
A request to:
GET /users?name__contains=ana&age__gte=21&age__lt=65&sort=-age&limit=20
…compiles to:
{"name": {"$regex": "ana"}, "age": {"$gte": 21, "$lt": 65}}
# sort=[("age", -1)], skip=0, limit=20
# (values in `contains` filters are regex-escaped before compilation)
…and every one of those parameters is documented, validated and typed in /docs.
Built with AI
This project is designed and developed with the assistance of AI (Anthropic's Claude Code). Design documents and code are AI-generated and human-reviewed.
Status
fast-pager is under active development. The 0.1.0 release ships
Stages 1–2 in full: the zero-config scalar filtering pipeline, Mongo
compiler, sorting/pagination, and per-field Filterable(...) control shown
above — and the documentation describes exactly the shipped API. The project
is still pre-1.0: per SemVer, breaking changes bump the minor version and
are called out in release notes. See the
changelog for exactly
what each version shipped.
Documentation
The full documentation site — getting started, tutorials, operator
reference, and the design documents below — lives at
fast-pager.eytanohana.com.
It's built with Zensical from docs/; see
docs/contributing/docs-site.md for how
it's configured and how to preview it locally.
Releasing (maintainers)
Releases are fully automated. From a clean main:
./scripts/release.sh patch # or minor / major
The script bumps the version in pyproject.toml (via uv version --bump),
commits, tags v<version>, and pushes. The tag triggers
release.yml, which:
- verifies the tag matches the
pyproject.tomlversion, - runs the full CI matrix,
- builds with
uv buildand publishes to PyPI via Trusted Publishing (OIDC — no API tokens), - creates the GitHub Release with generated notes.
fast_pager.__version__ reads from package metadata, so the version lives in
exactly one place.
Design documents
These are the product-design documents the implementation is built from. Read them in order:
| # | Document | What it covers |
|---|---|---|
| 00 | Overview & Vision | The problem, goals, non-goals, naming, guiding principles |
| 01 | Developer Experience | API surface options explored, the recommended ergonomics |
| 02 | Type & Operator System | Which Python types we support, their operators, compound types, per-field configurability |
| 03 | Architecture | The layered pipeline, the filter AST, the FastAPI signature trick |
| 04 | Backend Roadmap | Mongo today, generalizing to any database tomorrow |
| 05 | Roadmap & Release Plan | Phased path to a clean 1.0 on PyPI |
Start with 00-overview.md.
Release files for fast-pager 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| fast_pager-0.1.1.tar.gz | 23.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| fast_pager-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 53.3 kB
Release files / fast_pager-0.1.1.tar.gz
| Download URL | fast_pager-0.1.1.tar.gz |
|---|---|
| Size | 23.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3201bc05599622f9499237704eaa0adacff0ffcec42f0c7bb2823975bcd0bb0f
|
|
BLAKE2b-256 checksum How to use checksums |
d86ead0dc16574d04123a170a3442dc645cebbe278cb8b1c86d806eea7a00a64
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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}
|
Release files / fast_pager-0.1.1-py3-none-any.whl
| Download URL | fast_pager-0.1.1-py3-none-any.whl |
|---|---|
| Size | 30.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0d6442bd9b8d30342320ee4e5e947dc105a7180582e677df5b18a88e1b50ede2
|
|
BLAKE2b-256 checksum How to use checksums |
87c11675c1f9c4bd87ea0974caeb6178b1536122a0000b58b69f8dba4ddd87b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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}
|