- database
- login / register / basic http auth
- example of scheduled tasks
- return HTML example
- flask
- flask_restful
- flask_sqlalchemy
- flask_httpauth
- itsdangerous
python3 api.py
curl -H "Content-Type: application/json" -X POST -d '{"username":"user","password":"password"}' http://127.0.0.1:5000/register
curl --user user:password http://127.0.0.1:5000/register
python3
>>> from api import init_db
>>> init_db()
init db