FROM.txt 690 B

1234567891011121314151617181920212223242526272829303132333435
  1. See:
  2. http://flask-restful.readthedocs.io/en/0.3.5/quickstart.html
  3. Using httpauth:
  4. https://blog.miguelgrinberg.com/post/restful-authentication-with-flask
  5. Using SQLAlchemy and Flask:
  6. http://flask-sqlalchemy.pocoo.org/2.3/quickstart/
  7. # Because of a bug in oursql, I need to download and install manually...
  8. wget https://launchpad.net/oursql/py3k/py3k-0.9.4/+download/oursql-0.9.4.zip
  9. pip install oursql-0.9.4.zip
  10. sql_todo init:
  11. python
  12. import sql_todo
  13. sql_todo.db.create_all()
  14. Testing sql_todo:
  15. curl 127.0.0.1:11022/todos
  16. curl 127.0.0.1:11022/todos/1
  17. curl 127.0.0.1:11022/todos/test -d "task=Further testing of delete path" -X PUT -v
  18. curl 127.0.0.1:11022/todos/3 -X DELETE -v