--- id: starlette-admin version: "0.17.1" license: MIT license_treatment: permissive maintenance: active --- # starlette-admin — Fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications License: permissive · Maintenance: active · Downloads: 212.6K/mo ## 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 above — 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 pip install starlette-admin uv add starlette-admin 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_current - Install friction: low - Maintenance: active - Downloads: 212.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags fastapi admin interface, starlette admin dashboard, crud admin panel, orm admin interface, data management dashboard, sqlalchemy admin ui, fastapi data management, admin-interface, orm-agnostic, fastapi-ecosystem [View on SkillFed](https://skillfed.io/packages/starlette-admin) · [View on PyPI](https://pypi.org/project/starlette-admin/)