123456789101112131415161718192021222324252627282930313233343536373839 |
- See:
- http://flask-restful.readthedocs.io/en/0.3.5/quickstart.html
- Using httpauth:
- https://blog.miguelgrinberg.com/post/restful-authentication-with-flask
- Using SQLAlchemy and Flask:
- http://flask-sqlalchemy.pocoo.org/2.3/quickstart/
- # Because of a bug in oursql, I need to download and install manually...
- wget https://launchpad.net/oursql/py3k/py3k-0.9.4/+download/oursql-0.9.4.zip
- pip install oursql-0.9.4.zip
- sql_todo init:
- python
- import sql_todo
- sql_todo.db.create_all()
- Testing sql_todo:
- curl 127.0.0.1:11022/todos
- curl 127.0.0.1:11022/todos/1
- curl 127.0.0.1:11022/todos/test -d "task=Further testing of delete path" -X PUT -v
- curl 127.0.0.1:11022/todos/3 -X DELETE -v
- # and now!
- curl 127.0.0.1:11022/todos -d "name=fish" -d "task=Invoke fish" -X POST -v
- # Needs json header.
- curl -H "Content-Type: application/json" 127.0.0.1:11022/todos -d '{"name":"fish2", "task":"Inflate fish"}' -X POST -v
|