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
  • Custom backend (doc, example)

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

Thanks for your interest! Contributions are welcome.

Issues, feature requests, questions and bug reports should be reported via the issue tracker above. In particular, because StarletteAdmin aims to be well-documented, please report anything you find confusing or incorrect in the documentation.

Code or documentation improvements in the form of pull requests are also welcome. Please file or comment on an issue to allow for discussion before doing a lot of work, though.

For more details, see the CONTRIBUTING.md file.

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.6.0.dev2.tar.gz (1.8 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.6.0.dev2-py3-none-any.whl (1.8 MB view details)

Uploaded Python 3

File details

Details for the file starlette_admin-0.6.0.dev2.tar.gz.

File metadata

  • Download URL: starlette_admin-0.6.0.dev2.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.23.3

File hashes

Hashes for starlette_admin-0.6.0.dev2.tar.gz
Algorithm Hash digest
SHA256 d3dd2ec30172c760db155df59162060f98b89f68381ac424adeabe79f3701b2b
MD5 7cafd9aa49a7aa5644de3cc5f647f7d0
BLAKE2b-256 bac69ab499ab526c1033c52a534f7cb4594423dc191192892e15bf508e8f2a60

See more details on using hashes here.

File details

Details for the file starlette_admin-0.6.0.dev2-py3-none-any.whl.

File metadata

File hashes

Hashes for starlette_admin-0.6.0.dev2-py3-none-any.whl
Algorithm Hash digest
SHA256 fa05f544d70407e115cf94d09012f308c76002f1575434b58d8e6d5de40e9a5d
MD5 d0012612e2544ec11cea8733a7c37b2b
BLAKE2b-256 a717eb8fb3af82a1821c9922855b6898c2cf3bd7a3980f39bbe826f3d5fba2cd

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