SQLAlchemy admin for Litestar
Project description
This is the port of Sqladmin to Litestar WIP
There may be breaking changes, probably will
SQLAlchemy Admin for Litestar
SQLAdmin is a flexible Admin interface for SQLAlchemy models.
Main features include:
- SQLAlchemy sync/async engines
- Starlette integration
- FastAPI integration
- WTForms form building
- SQLModel support
- UI using Tabler
Documentation: https://aminalaee.dev/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
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
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
Built Distribution
File details
Details for the file sqladmin_litestar-0.16.1.tar.gz
.
File metadata
- Download URL: sqladmin_litestar-0.16.1.tar.gz
- Upload date:
- Size: 544.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.26.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a81c9bb20028f658e221d69c2a581396eee375c3e3c7e1a7047e71483457bd1 |
|
MD5 | 55470b9f1f0e447efe5dd52dc6bce493 |
|
BLAKE2b-256 | 69bfd86c90a56be6ea7a5ae6cf8af760be63f45d109e079e7278340b6db6fec0 |
File details
Details for the file sqladmin_litestar-0.16.1-py3-none-any.whl
.
File metadata
- Download URL: sqladmin_litestar-0.16.1-py3-none-any.whl
- Upload date:
- Size: 559.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.26.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6811974ac0e1677b754056698b40a502cd4613d4573cacf7ff07a370c635d05 |
|
MD5 | cdd436a7cd8d852059517b55563de9c3 |
|
BLAKE2b-256 | c9f709077de28dc26407e7f8c77a579c3acf57a8e8ea46dc48bd6490047aa430 |