flask_autocrud
flask_autocrud copied to clipboard
Automatically generate a RESTful API service for CRUD operation on database and advanced search
1. autocrud for any database (with config file pointing to example database) 2. `examples` with example database ## autocrud demo autocrud -c examples/configuration.yaml ## sample app python examples/run.py NOTE has...
Extract: 127.0.0.1 - - [08/Feb/2024 18:38:56] "?[33mGET / HTTP/1.1?[0m" 404 - 127.0.0.1 - - [08/Feb/2024 18:38:56] "?[33mGET /favicon.ico HTTP/1.1?[0m" 404 - 127.0.0.1 - - [08/Feb/2024 18:39:02] "?[33mGET /admin HTTP/1.1?[0m" 404...
setup.py requirements are too greedy and pull in version that are incompatible with current code: AttributeError: module 'flask.json' has no attribute 'JSONEncoder' ImportError: cannot import name 'url_quote' from 'werkzeug.urls' ImportError:...
Fixes #7 Added flask admin as the example uses that.
Hi @cs91chris, First of all, thank you for this awesome project! I am getting the above error, when I try to run a request against any of the model endpoints,...
Considering the following DB schema ```sql CREATE TABLE IF NOT EXISTS "Genres" ( "genreId" TEXT, "genreName" TEXT, "genreDesc" TEXT, PRIMARY KEY("genreId") ); CREATE TABLE IF NOT EXISTS "Artists" ( "artistId"...