Skip to main content

SQLAlchemy admin for FastAPI and Starlette

Project description

Build Status Publish Status Coverage Package version Supported Python versions


SQLAlchemy Admin for Starlette/FastAPI

SQLAdmin is a flexible Admin interface for SQLAlchemy models.

Main features include:


Documentation: https://aminalaee.github.io/sqladmin

Source Code: https://github.com/aminalaee/sqladmin

Online Demo: Demo


Installation

Install using pip:

$ pip install sqladmin

This will install the full version of sqladmin with optional dependencies:

$ pip install "sqladmin[full]"

Screenshots

sqladmin-1 sqladmin-2

Quickstart

Let's define an example SQLAlchemy model:

from sqlalchemy import Column, Integer, String, create_engine
from sqlalchemy.orm import declarative_base


Base = declarative_base()
engine = create_engine(
    "sqlite:///example.db",
    connect_args={"check_same_thread": False},
)


class User(Base):
    __tablename__ = "users"

    id = Column(Integer, primary_key=True)
    name = Column(String)


Base.metadata.create_all(engine)  # Create tables

If you want to use SQLAdmin with FastAPI:

from fastapi import FastAPI
from sqladmin import Admin, ModelView


app = FastAPI()
admin = Admin(app, engine)


class UserAdmin(ModelView, model=User):
    column_list = [User.id, User.name]


admin.add_view(UserAdmin)

Or if you want to use SQLAdmin with Starlette:

from sqladmin import Admin, ModelView
from starlette.applications import Starlette


app = Starlette()
admin = Admin(app, engine)


class UserAdmin(ModelView, model=User):
    column_list = [User.id, User.name]


admin.add_view(UserAdmin)

Now visiting /admin on your browser you can see the SQLAdmin interface.

Related projects and inspirations

  • Flask-Admin Admin interface for Flask supporting different database backends and ORMs. This project has inspired SQLAdmin extensively and most of the features and configurations are implemented the same.
  • FastAPI-Admin Admin interface for FastAPI which works with TortoiseORM.
  • Dashboard Admin interface for ASGI frameworks which works with the orm package.

Project details


Download files

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

Source Distribution

sqladmin-0.21.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

sqladmin-0.21.0-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file sqladmin-0.21.0.tar.gz.

File metadata

  • Download URL: sqladmin-0.21.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for sqladmin-0.21.0.tar.gz
Algorithm Hash digest
SHA256 cb455b79eb79ef7d904680dd83817bf7750675147400b5b7cc401d04bda7ef2c
MD5 5aa31e92ef43f7f05116c7005821318c
BLAKE2b-256 5b0c614041e1b544e0de1f43b58f0105b3e2795b80369d5b0ff7412882d42fff

See more details on using hashes here.

File details

Details for the file sqladmin-0.21.0-py3-none-any.whl.

File metadata

  • Download URL: sqladmin-0.21.0-py3-none-any.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for sqladmin-0.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b1802c49bdd3128c6452625705693cf32d5d33e7db30e63f409bd20a9c05b53
MD5 ef53c8aadc68703fb1815d0f2ba5bb1c
BLAKE2b-256 ed8d81b2a48cc6f5479cb1148292518e3006ec8f5fbe3b0829ef165984e9d7b9

See more details on using hashes here.

Supported by

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