$ pip install -r requirements.txt
./app.py
###default GET
curl -i http://localhost:5000
###GET
curl -i http://localhost:5000/todo/api/v1.0/tasks/1
###Auth GET
curl -ugabriel:python -i http://localhost:5000/todo/api/v1.0/all_tasks/
###POST
curl -i -H "Content-Type: application/json" -X POST -d '{"title":"Read a book"}' http://localhost:5000/todo/api/v1.0/tasks
###PUT
curl -i -H "Content-Type: application/json" -X PUT -d '{"done":true}' http://localhost:5000/todo/api/v1.0/tasks/2
###DELTE
curl -i -H "Content-Type: application/json" -X DELETE http://localhost:5000/todo/api/v1.0/tasks/3