This is a simple REST API I built so as to learn Flask-RestX.
| METHOD | ROUTE | DESCRIPTION |
|---|---|---|
| GET | /todos | get todos |
| GET | /todo/{id} | get a todo with an id |
| POST | /todos | create a todo |
| PUT | /todo/{id} | update a todo with an id |
| DELETE | /todo/{id} | delete a todo with an id |
- Python3
- Flask
- FlaskSQLAlchemy
python3 app.py