今天被flask的项目结构或者说是蓝图搞得晕头转脑,各种文档也没说清,从github搜索并clone了几个用flask做成的网站,无奈水平太低,看不懂
记录一下今天学到的
蓝图
|-app/
|-|init.py
|-|views.py
|-|init.py
|-|templates/
|-|static/
|-config.py
|-run.py
|-tmp/
run.py
输入python run.py
就可以运行程序
from app import app #从app包中调用app模块
app.run() #运行程序
config.py
一些基本的配置
DEBUG = True #打开调试模式
app/init.py
from flask import Flask, request, session, g, redirect, url_for, \
abort, render_template, flash
app = Flask(__name__)
app.config.from_object("config …