From 871f6984a3bda1ea7b607ac3687bbaf25538b551 Mon Sep 17 00:00:00 2001 From: debrice Date: Thu, 2 Feb 2012 20:56:39 -0800 Subject: [PATCH] Add link to WTF and SQLAlchemy --- Large-app-how-to.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 89e43bf..c056b4b 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -16,11 +16,15 @@ SQL provide an easy and advanced way to serialize your object to different type pip install flask-sqlalchemy +[http://packages.python.org/Flask-SQLAlchemy/](More here about SQL Alchemy flask package) + ## Flask-WTF WTF (What the Form) Provides a easy way to handle user's data submission. pip install Flask-WTF +[http://packages.python.org/Flask-WTF/](More here about What The Form flask package) + # Overview Ok, so from now, we should have all the libs ready. Here the folder structures: @@ -50,7 +54,7 @@ We'll create 4 modules, a user module (manage user's registration, login, passwo `shell.py` will allow you to get a console and enter commands within your flask environment. Maybe not as nice as debugging with pdb, but always usefull (when you will initialize your database) - #!/usr/bin/env python + #!/usr/bin/env python import os import readline from pprint import pprint @@ -58,4 +62,6 @@ We'll create 4 modules, a user module (manage user's registration, login, passwo from flask import * from app import * - os.environ['PYTHONINSPECT'] = 'True' \ No newline at end of file + os.environ['PYTHONINSPECT'] = 'True' + +