This folder contains the bonus material & example projects for our upcoming part 2 of Building and Documenting Python REST APIs With Flask and Connexion on Real Python.
Source code: https://github.com/realpython/materials/tree/master/flask-connexion-rest-part-2
To install:
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
python server.py
To run:
Go to localhost:5000 for the web app,
or to localhost:5000/api/ui for the Swagger UI
To create/reset the SQLLite database (people.db):
python build_database.py