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