Original Assignment: https://github.com/Cornell-PoBE/A1
Install requirements.txt Install SQLite
POST /tasks?name={name}&description={description}&tags={tags (comma separated)}&due_date={due date (in unix time)}
Creates a task given the URL
params above
GET /tasks
Get a list of all tasks
GET /tasks/{id}
Get a task by its ID
DELETE /tasks/{id}
Delete a specific task
DELETE /tasks/all
Delete all tasks
GET /tasks/{name}
Get all tasks with the specific name
GET /tasks/{tag}
Get all tasks with the specific tag.
test.py