Starlette-Admin is a fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications.
- Check out the documentation.
- Try the live demo. (Source code)
- Try the several usage examples included in the /examples folder
- If you find this project helpful or interesting, please consider giving it a star ⭐️
- CRUD any data with ease
- Automatic form validation
- Advanced table widget with Datatables
- Search and filtering
- Search highlighting
- Multi-column ordering
- Export data to CSV/EXCEL/PDF and Browser Print
- Authentication
- Authorization
- Manage Files
- Custom views
- Custom batch actions
- Supported ORMs
- SQLAlchemy
- SQLModel
- MongoEngine
- ODMantic
- Custom backend (doc, example)
- Internationalization
$ pip install starlette-admin
$ poetry add starlette-admin
This is a simple example with SQLAlchemy model
from sqlalchemy import Column, Integer, String, create_engine
from sqlalchemy.ext.declarative import declarative_base
from starlette.applications import Starlette
from starlette_admin.contrib.sqla import Admin, ModelView
Base = declarative_base()
engine = create_engine("sqlite:///test.db", connect_args={"check_same_thread": False})
# Define your model
class Post(Base):
__tablename__ = "posts"
id = Column(Integer, primary_key=True)
title = Column(String)
Base.metadata.create_all(engine)
app = Starlette() # FastAPI()
# Create admin
admin = Admin(engine, title="Example: SQLAlchemy")
# Add view
admin.add_view(ModelView(Post))
# Mount admin to your app
admin.mount_to(app)
Access your admin interface in your browser at http://localhost:8000/admin
starlette-admin is built with other open source projects:
Contributions are welcome and greatly appreciated! Before getting started, please read our contribution guidelines