Skip to main content

Generic FastAPI + SQLAlchemy admin backend.

Project description

xladmin backend

xladmin-backend is the backend package published to PyPI as xladmin.

Important:

  • package name on PyPI: xladmin
  • Python import: from xladmin import ...
  • monorepo: Artasov/xladmin

Public API

  • AdminConfig / ModelConfig / FieldConfig
  • ListFilterConfig
  • BulkActionConfig / ObjectActionConfig
  • ModelsBlock
  • HttpConfig
  • create_router(...)

Compatibility aliases are kept:

  • Admin* config names
  • create_admin_router(...)

Minimal Example

from xladmin import AdminConfig, HttpConfig, ModelConfig, create_router

from src.core.auth.dependencies import get_current_user
from src.core.db.session import get_db_session
from src.modules.identity.models import UserORM


config = AdminConfig(
    models=(
        ModelConfig(model=UserORM),
    ),
)

router = create_router(
    HttpConfig(
        registry=config,
        get_db_session_dependency=get_db_session,
        get_current_user_dependency=get_current_user,
        is_allowed=lambda user: bool(user.is_staff),
    ),
)

ModelConfig(model=UserORM) is enough for a basic admin. The library derives default slug, title, search fields, and ordering from the ORM model.

Features

  • list / detail / create / patch / delete endpoints
  • bulk actions and object actions
  • relation choices and relation filters
  • single and multi-select relation filters via ListFilterConfig(..., multiple=True, input_kind="relation-multiple")
  • overview metadata and model blocks
  • query_for_list and custom search_query_builder
  • mode-specific form fields with hidden_in_create / hidden_in_update
  • custom create defaults with create_item_factory
  • delete preview for single and bulk delete
  • RU / EN locale metadata for the frontend

Multi-Select Relation Filters

If one relation filter is not enough, you can expose a multi-select variant that works as an autocomplete with add/remove chips on the frontend.

from xladmin import ListFilterConfig


ListFilterConfig(
    slug="role_ids",
    label="Roles",
    field_name="roles",
    input_kind="relation-multiple",
    multiple=True,
    relation_model=RoleORM,
    relation_label_field="name",
)

Create And Update Fields

If a field should be visible only in one form mode, use hidden_in_create or hidden_in_update.

from xladmin import FieldConfig, ModelConfig


ModelConfig(
    model=UserORM,
    fields={
        "password": FieldConfig(
            input_kind="password",
            hidden_in_update=True,
            value_setter=set_user_password,
        ),
        "new_password": FieldConfig(
            input_kind="password",
            hidden_in_create=True,
            value_getter=lambda _user: "",
            value_setter=set_user_password,
        ),
    },
)

If create requires hidden service fields, use create_item_factory.

from xladmin import ModelConfig


def create_admin_user(payload, session, user):
    del payload, session, user
    return UserORM(
        date_joined=AuthBase.now(),
        secret_key=AuthBase.generate_secret_key(),
    )


ModelConfig(
    model=UserORM,
    create_fields=("username", "email", "password"),
    create_item_factory=create_admin_user,
)

Compatibility

  • FastAPI >=0.115,<1.0
  • Pydantic >=2.9,<3.0
  • SQLAlchemy >=2.0,<3.0
  • Python >=3.12

Development

uv sync --extra dev
uv run pytest
uv run ruff check .
uv run mypy
uv run python -m build
uv run python -m twine check dist/*

Docs

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

xladmin-0.3.7.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

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

xladmin-0.3.7-py3-none-any.whl (27.2 kB view details)

Uploaded Python 3

File details

Details for the file xladmin-0.3.7.tar.gz.

File metadata

  • Download URL: xladmin-0.3.7.tar.gz
  • Upload date:
  • Size: 29.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for xladmin-0.3.7.tar.gz
Algorithm Hash digest
SHA256 9bf50342e6ee4c3e8e390484430d070998cf60a1eaaf4ea11cadc8ce385da066
MD5 28beefcb0c3947f1c488632c0f4c63d0
BLAKE2b-256 6916d438864f639e647cddd99b428bf2f2a8a1c08818b45e68e321fb577731be

See more details on using hashes here.

File details

Details for the file xladmin-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: xladmin-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for xladmin-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 6ba4c05c2d765ed8201b7b17bb0ab1342ef88de6db4d6dd53dad4004bbcc0d9a
MD5 32b645494ffc821c1af9c0ea896830c9
BLAKE2b-256 3f325a29671820a49af9ce189e85a4a981c7b0b6264a343ec936fc0ee1fa3b81

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