Skip to main content

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

Project description

starlette-admin

Starlette-Admin is a fast, beautiful and extensible administrative interface framework for Starlette/FastApi applications.

Test suite Publish Codecov Package version Supported Python versions

Preview image

Getting started

Features

  • 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
  • Internationalization

Installation

PIP

$ pip install starlette-admin

Poetry

$ poetry add starlette-admin

Example

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

Third party

starlette-admin is built with other open source projects:

Contributing

Contributions are welcome and greatly appreciated! Before getting started, please read our contribution guidelines

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

starlette_admin-0.12.2.tar.gz (2.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

starlette_admin-0.12.2-py3-none-any.whl (2.1 MB view details)

Uploaded Python 3

File details

Details for the file starlette_admin-0.12.2.tar.gz.

File metadata

  • Download URL: starlette_admin-0.12.2.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.25.1

File hashes

Hashes for starlette_admin-0.12.2.tar.gz
Algorithm Hash digest
SHA256 b8da375ff5e2ce0f6e1407977b23f4c147e1cb69b2b4abe07f96714e4c59b7f0
MD5 5ee60a1329826351889954dc232de9dd
BLAKE2b-256 859b5104db9eb2d6125ec664f72fdffb3f3960380a534380d30feafaa6fc985f

See more details on using hashes here.

File details

Details for the file starlette_admin-0.12.2-py3-none-any.whl.

File metadata

File hashes

Hashes for starlette_admin-0.12.2-py3-none-any.whl
Algorithm Hash digest
SHA256 25bf5ddd2af8d2f6b3bec3e5c16c883e810274ce35eee9cc27c6242bea7a6a34
MD5 957659744433eb4a68ee299841e3e7ad
BLAKE2b-256 875febe90ff5a443eb94f2374f6bfd8f8da11328fb7a9a5c718ebe328b0da71d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page