Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bolajiayodeji/apitoolkit-flask-test
Quick demo of APItoolkit's Flask SDK.
https://github.com/bolajiayodeji/apitoolkit-flask-test
api apitoolkit flask flask-api rest-api
Last synced: 27 days ago
JSON representation
Quick demo of APItoolkit's Flask SDK.
- Host: GitHub
- URL: https://github.com/bolajiayodeji/apitoolkit-flask-test
- Owner: BolajiAyodeji
- Created: 2024-04-02T16:22:41.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T07:03:51.000Z (5 months ago)
- Last Synced: 2024-06-18T08:28:01.068Z (5 months ago)
- Topics: api, apitoolkit, flask, flask-api, rest-api
- Language: HTML
- Homepage:
- Size: 1.89 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# apitoolkit-flask-test
A quick demo MBTPI (Myers-Briggs Personality Type Indicator) prediction application from my [Deploying Machine Learning Models to the Web](https://github.com/BolajiAyodeji/deploy-ml-web-workshop) workshop that uses [APIToolkit's Flask SDK](https://github.com/apitoolkit/apitoolkit-flask) for API monitoring and observability.
---
## Quick Setup
Add your credentials in a `.env` file:
```bash
FLASK_DEBUG=1
APITOOLKIT_API_KEY=
```Install all the required packages:
```bash
pip install python-dotenv scikit-learn flask gunicorn apitoolkit_flask
```Start the local server:
```bash
flask run
```