[Fixed]-Admin interface for SQLAlchemy?

21👍

Use Flask-Admin. Right now it has about 70% of Django features, some really great features, that Django doesn’t support and it extremely flexible as Flask

4👍

You can also check fa.bootstrap – twitter bootstrap integration for pyramid_formalchemy:

http://pypi.python.org/pypi/fa.bootstrap

With pyramid_formalchemy it is now much easier to get admin panel in non django-app.

3👍

Camelot is really great for this, but its a desktop app.

Restin is another option if you are using elixir (which you should be, to be honest).

2👍

There wasn’t one when I looked, either. But I did start developing one myself. I have a generic data editor working now, although not as far along as the Django one. You’re welcome to fork it.

Mostly found in these files:

http://code.google.com/p/pycopia/source/browse/trunk/storage/pycopia/db/webhelpers.py
http://code.google.com/p/pycopia/source/browse/trunk/storage/pycopia/db/webservice.py

But it does depend on the pycopia web application framework as well. It’s a basic server-side interface now, but I’ve been converting it to a JSON/XHR type RPC interactive interface.

I actually use it, even though it’s not complete.

👤Keith

2👍

there is another option called "sqladmin" – https://github.com/aminalaee/sqladmin

docs: https://aminalaee.dev/sqladmin/

1👍

There is a new (WIP) package django-sqlalchemy:

https://github.com/auvipy/django-sqlalchemy

Leave a comment