Skip to main content

A CRUD like manager for Flask.

Is Flexible

Save in a hello.py:

from flask import Flask
from flask_manager import crud, controller, rules as rules_

all_items = {
    i: {'id': i, 'title': 'Title - {}'.format(i)}
    for i in range(100)
}
next_id = 100

class Controller(controller.Controller):
    def get_items(self, page=1, order_by=None, filters=None):
        return all_items, len(all_items)

    def get_item(self, pk):
        return all_items[pk]

    def create_item(self, form):
        # wtforms does not support dicts :( (I think:P)
        global next_id
        all_items[next_id] = {
            'id': next_id, 'title': 'Title - {}'.format(next_id)}
        next_id += 1

    def update_item(self, item, form):
        # wtforms does not support dicts :( (I think:P)
        pass

    def delete_item(self, pk):
        del all_items[pk]


class Crud(crud.Crud):
    controller = Controller()
    # you may merge read/update to "form" if using the same columns
    rules = {
        'list': rules.ColumnSet(['title']),
        'create': rules.FormFieldSet(['title']),
        'read': rules.DataFieldSet(['title']),
        'update': rules.FormFieldSet(['title']),
        'delete': rules.DataFieldSetWithConfirm(['title']),
    }

if __name__ == '__main__':
    app = Flask(__name__)
    admin = crud.Index('My Admin', url='', items=[
        Crud('My Crud'),
    ])
    app.register_blueprint(admin.create_blueprint())

Then execute:

$ pip install flask-manager
$ python hello.py

Release history Release notifications | RSS feed

This release

0.0.1 This release

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page