- Python 3
- Pip 3
$ brew install python3| from datetime import datetime | |
| from flask import * | |
| from flaskext.wtf import * | |
| from flaskext.sqlalchemy import * | |
| from werkzeug import generate_password_hash, check_password_hash | |
| app = Flask() | |
| app.config.from_pyfile('app_settings.py') | |
| db = SQLAlchemy(app) |