You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Simple Flask API
A small RESTful API built with Flask.
## Features
- View all tasks
- Add a new task
- Delete a task
## How to Run
1. Clone this repository
2. Run: pip install -r requirements.txt
3. Run: python app.py
4. Visit http://127.0.0.1:5000
## Example Endpoints
- GET /tasks
- POST /add
- JSON Body: {"id": 3, "title": "New Task"}
- DELETE /delete/3
# simple-flask-api