Web API wrapper for the module - backend part
Python package is available at PyPI
git clone https://github.com/digital-fracture/promobot-appeal-api-backend
cd promobot-appeal-api-backend
pipenv install
pipenv run uvicorn main:app
Windows (PowerShell) (not tested):
git clone https://github.com/digital-fracture/promobot-appeal-api-backend.git
cd promobot-appeal-api-backend
python -m venv venv
.\venv\Scripts\Activate.ps1
pip install -r requirements.txt
uvicorn main:app
Linux / MacOS:
git clone https://github.com/digital-fracture/promobot-appeal-api-backend.git
cd promobot-appeal-api-backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app
- python 3.11 - programming language
- promobot-appeal-processing - ML processor
- FastAPI - web server engine
- aiosqlite - asynchronous database handling
- aiocsv - asynchronous
.csv
files handling - And more