Add link to WTF and SQLAlchemy

debrice 2012-02-02 20:56:39 -08:00
parent 556526caec
commit 871f6984a3

@ -16,11 +16,15 @@ SQL provide an easy and advanced way to serialize your object to different type
pip install flask-sqlalchemy pip install flask-sqlalchemy
[http://packages.python.org/Flask-SQLAlchemy/](More here about SQL Alchemy flask package)
## Flask-WTF ## Flask-WTF
WTF (What the Form) Provides a easy way to handle user's data submission. WTF (What the Form) Provides a easy way to handle user's data submission.
pip install Flask-WTF pip install Flask-WTF
[http://packages.python.org/Flask-WTF/](More here about What The Form flask package)
# Overview # Overview
Ok, so from now, we should have all the libs ready. Here the folder structures: Ok, so from now, we should have all the libs ready. Here the folder structures:
@ -59,3 +63,5 @@ We'll create 4 modules, a user module (manage user's registration, login, passwo
from app import * from app import *
os.environ['PYTHONINSPECT'] = 'True' os.environ['PYTHONINSPECT'] = 'True'