A Flask-based REST API for managing products. Provides 3 endpoints for product listing and retrieval.
- Python 3.10+
- Flask
- SQLite for local storage
| Method | Path | Description |
|---|---|---|
| GET | /health | Health check |
| GET | /api/products | List all products |
| GET | /api/products/:id | Get product by ID |
pip install -r requirements.txt
python app.py