This repository has been archived on 2024-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-29 18:09:08 +02:00
2020-03-01 01:52:34 +00:00
2020-03-01 01:49:43 +00:00
2020-03-01 01:49:43 +00:00
2020-03-01 00:57:33 +00:00
2020-03-01 00:57:33 +00:00
2020-03-01 01:42:36 +00:00
2023-05-29 18:09:08 +02:00
2023-05-29 18:09:08 +02:00
2020-03-01 00:57:33 +00:00
2023-05-29 18:09:08 +02:00
2020-03-01 00:57:33 +00:00
2023-05-29 18:09:08 +02:00
2023-05-29 18:09:08 +02:00
2023-05-29 18:09:08 +02:00
2023-05-29 18:09:08 +02:00
2020-03-01 00:57:33 +00:00
2020-03-01 01:49:43 +00:00

flask-calibrestekje

Repository license PyPI package Travis CI result Documentation status Support badge

Library prototyping based on Calibre with Flask

Example

app.cfg

CALIBRESTEKJE_SQLITE_URL = "sqlite:///mymetadata.db"

app.py

from calibrestekje import Book
from flask import Flask, jsonify

from flask_calibrestekje import CalibreStekje

app = Flask(__name__)
app.config.from_pyfile("app.cfg")
db = CalibreStekje(app)

@app.route("/")
def home():
    return jsonify({"book-count": db.session.query(Book).count()})

command-line

$ export FLASK_APP=app.py
$ flask run

Documentation

Description
Library prototyping based on Calibre with Flask
Readme 74 KiB
Languages
Python 100%