starlette-admin
Fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications
What it is and what it does
Starlette-admin is an administrative interface framework that plugs into Starlette and FastAPI applications to provide a web-based dashboard for managing data. It works with multiple ORMs—SQLAlchemy, SQLModel, MongoEngine, ODMantic—and supports custom backends, so you can use it regardless of your database choice. The package handles CRUD operations, form validation, search, filtering, multi-column ordering, CSV/Excel/PDF export, and user authentication and authorization out of the box.
The admin interface is built on Tabler for styling and Datatables for the table widget, giving it a modern, responsive design. You mount it to your Starlette or FastAPI app in a few lines of code, and it automatically generates views for your models. The framework is still in beta but actively maintained, with support for Python 3.9 through 3.13 and a permissive MIT license.
Use it for:
- Quickly add a data management dashboard to a FastAPI application without building a custom admin UI.
- Manage SQLAlchemy or SQLModel database records through a web interface with built-in search and filtering.
- Export application data to CSV, Excel, or PDF formats for reporting and analysis.
- Implement role-based access control and authentication for administrative operations.
- Build a custom admin backend for non-standard data sources by extending the base model view.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Starlette-admin provides a ready-made admin interface for Starlette and FastAPI applications, enabling CRUD operations on data from multiple ORMs and custom backends without building a dashboard from scratch.
Yes. Starlette-admin is actively maintained, has low install friction, carries no security vulnerabilities, and solves a real gap in the Starlette/FastAPI ecosystem by providing a flexible admin interface that works across multiple ORMs. The MIT license poses no restrictions. Install it if you need a dashboard for data management and don't want to build one yourself.
Install
starlette-admin on PyPI
pip
pip install starlette-adminuv
uv add starlette-adminpoetry
poetry add starlette-adminInstalling starlette-admin
Before you install
Low install friction with three lightweight runtime dependencies. Active maintenance with a recent release and steady commit history.
License in practice
MIT license permits commercial and private use with minimal restrictions—suitable for most projects without legal concern.
Quickstart
pip install starlette-admin
from starlette_admin.contrib.sqla import Admin, ModelView
from starlette.applications import Starlette
admin = Admin(engine, title="My Admin")
admin.add_view(ModelView(Post))
admin.mount_to(app)
Requires Python 3.9 or later; integration with a specific ORM (SQLAlchemy, SQLModel, MongoEngine, ODMantic) or a custom data backend.
Verify before relying
- Whether the admin interface scales well with large datasets or high-traffic deployments.
- Performance characteristics of the Datatables widget with thousands of rows.
- Extent of customization possible for authentication and authorization beyond the built-in support.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — jinja2, python-multipart, starlette |
| Maintenance | actively maintained — 25 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 212,617/month — #9,453 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: starlette_admin-0.17.1-py3-none-any.whl
Keywords: admin, dashboard, datatables, fastapi, mongoengine, odmantic, sqlalchemy, sqlmodel, starlette
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
Flask-AdminFlask-Admin adds a customizable admin interface…
permissive · top 5,000 on PyPI
sqladminGenerates a web-based admin interface for…
permissive · top 5,000 on PyPI
piccolo-adminPiccolo Admin is a web-based admin interface…
permissive · top 15,000 on PyPI
fastcrudFastCRUD provides async CRUD operations and…
permissive · top 15,000 on PyPI
slowapiAdds rate limiting to Starlette and FastAPI…
permissive · top 1,000 on PyPI
fastapi-utilsProvides reusable utilities and base classes…
permissive · top 5,000 on PyPI
starlette-graphene3Mounts a GraphQL API built with Graphene v3…
permissive · top 15,000 on PyPI
fastapi-filterAdds declarative filtering, sorting, and…
permissive · top 15,000 on PyPI
starlette-compressMiddleware for Starlette and FastAPI that…
permissive · top 5,000 on PyPI
fastapi-restfulProvides utilities and base classes to reduce…
permissive · top 15,000 on PyPI