Skip to main content

Simplest fastest minimal ASGI CRUD Admin panel for Tortoise ORM models. It's generating fully native async auto zero config one line app

Project description

X-Admin

Simplest fastest minimal ASGI CRUD Admin panel for Tortoise ORM models

It's generating fully native async auto zero config one line app

Requirements

  • Python >= 3.11

INSTALL

pip install x-admin

Run your app

  • Describe your db models with Tortoise ORM in models.py module
from tortoise import fields
from tortoise_api import Model

class User(Model):
    id: int = fields.IntField(pk=True)
    name: str = fields.CharField(255, unique=True, null=False)
    posts: fields.ReverseRelation["Post"]

class Post(Model):
    id: int = fields.IntField(pk=True)
    text: str = fields.CharField(4095)
    user: User = fields.ForeignKeyField('models.User', related_name='posts')
    _name = 'text' # `_name` sets the attr for displaying related Post instace inside User (default='name')
  • Write run script main.py: pass your models module in Api app:
from x_admin import Admin
import models

app = Admin().start(models)
  • Set DB_URL env variable in .env file
  • Run it:
uvicorn main:app

Or you can just fork Completed minimal runnable example from sample apps.

And voila:

You have menu with all your models at root app route: http://127.0.0.1:8000


Made with ❤ on top of the Starlette, TortoiseORM, X-API.

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

femto_admin-0.7.4.dev1.tar.gz (4.4 MB view details)

Uploaded Source

Built Distribution

femto_admin-0.7.4.dev1-py3-none-any.whl (4.4 MB view details)

Uploaded Python 3

File details

Details for the file femto_admin-0.7.4.dev1.tar.gz.

File metadata

  • Download URL: femto_admin-0.7.4.dev1.tar.gz
  • Upload date:
  • Size: 4.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for femto_admin-0.7.4.dev1.tar.gz
Algorithm Hash digest
SHA256 4b23473118576dfb7b4676c3ade5991b62baba9c9fda47d59226af640711e920
MD5 f9e457c5ab62a21fb869660402e79ec0
BLAKE2b-256 009090cc2650d379274b75a388f77060f11fa2d13dcf513999a7e1c05815c5c2

See more details on using hashes here.

File details

Details for the file femto_admin-0.7.4.dev1-py3-none-any.whl.

File metadata

File hashes

Hashes for femto_admin-0.7.4.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 e68396ef1d8092d6cfcee3d06e3322872ed17bd9fadb9aef5337cc191d4bd00f
MD5 1911b1c7f08f826ef48616869e7b331f
BLAKE2b-256 8aebd487dca2886d4adc13e656d45ade5c799bd48fd7bf51bc92bde2b776461f

See more details on using hashes here.

Supported by

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