A REST API for a Todo list
written in Python using Flask
- Marshmallow - For serializing/deserializing
- Flask - For serving the API
- getTasks (
api/v1/task
) - GET - Returns a list of tasks - addTask (
api/v1/task
) - POST - Adds a new task to the list of tasks
- Add a backend DB to hold the tasks
- Add
due date
andcreated date
to facilitate ordering on the front end - Create
User
class and fields - Associate a
User
with aTask
- Add Authentication using JWT