skillfed

starlette-admin

Fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications

starlette-admin v0.17.1 212.6K downloads/30d#9,453 on PyPI1,014
Permissive license MIT Active released

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-admin

uv

uv add starlette-admin

poetry

poetry add starlette-admin

Installing 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

Development Status :: 4 - BetaEnvironment :: Web EnvironmentFramework :: AsyncIOIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Topic :: Software Development :: Libraries :: Python Modules

Tags

fastapi admin interfacestarlette admin dashboardcrud admin panelorm admin interfacedata management dashboardsqlalchemy admin uifastapi data management
admin-interfaceorm-agnosticfastapi-ecosystem

More Python Modules packages