a simple API written using FastAPI, sqlalchemy, and pydantic
you'll need to create a venv
python -m venv venvthen activate that venv. This is operating system specific. On windows its venv\Scripts\activate.bat
on linux it's source venv/bin/activate
then
pip install fastapi[all] sqlalchemyto launch the dev server you can run
fastapi dev main.pyto launch the production server you can run (untested)
fastapi run main.py