This simple Flask demo uses SQLite3 and Flask-SQLAlchemy-lite for database management. Manual pagination is implemented as this feature is not supported in the lite version.
python3 -m venv venv
pip install -r requirements.txt
from app import create_app, db
from app.models import Model, User, Holding
app = create_app()
with app.app_context():
Model.metadata.create_all(bind=db.engine)