Skip to main content

Admin interface for SQLAlchemy.

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.dev/sqladmin

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

Online Demo: Demo


Installation

$ pip install sqladmin

Quickstart

Let's define an example SQLAlchemy model:

from sqlalchemy import Column, Integer, String, create_engine
from sqlalchemy.ext.declarative 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.2.1.tar.gz (461.3 kB view details)

Uploaded Source

Built Distribution

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

sqladmin-0.2.1-py3-none-any.whl (466.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: sqladmin-0.2.1.tar.gz
  • Upload date:
  • Size: 461.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for sqladmin-0.2.1.tar.gz
Algorithm Hash digest
SHA256 11ddfe05f748cc7393c0a4ee0af27d5184d95ab860d25982848e38d72fe6bb8e
MD5 e15f44156838cbe2ab9a4214868b1acf
BLAKE2b-256 d9ecc8a9119497796c551b9e0150ea941a48a66ad7434d0d3801f5b9358fb83c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sqladmin-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 466.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for sqladmin-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f7eb327cfb4bbde1912e1dc67ccfd241a7339817c05cc1e9c855a6873144aaf7
MD5 c175ae494e14faea84a4b31ae098da00
BLAKE2b-256 69a7c3afa87af9c4457ae80f99af559b583813d980ad19483f34660bbbdf54f3

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