FROM.txt 487 B

1234567891011121314151617181920212223242526
  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()