初始化 flask 環境
pip install pipenv
mkdir flasky
pipenv shell
pipenv install flask
# 安裝外掛
pipenv install flask-sqlalchemy flask-migrate flask-wtf flask-mail pymysql
mkdir app
建立 .env 檔案,在使用pipenv的時候會載入.env 檔案
# .env
FLASK_APP=run.py
FLASK_DEBUG = 1
app初始化
新建初始化檔案,使用工廠函式來建立 app 以便後續寫unittest的時候,能夠動態的傳入不同的配置,從而生成 app 例項。
# app/__init__.py
from flask import Flask
from config import config
from flask_sqlalchemy import SQLAlchemy
from flask_mail import Mail
# 資料庫連線
db = SQLAlchemy()
# 傳送郵件
mail = Mail()
def create_app(config_name):
app = Flask(__name__)
app.config.from_object(config[config_name])
# 初始化各種外掛
config[config_name].init_app(app)
db.init_app(app)
mail.init_app(app)
return app
配置檔案初始化
新建config.py
# config.py
# coding: utf-8
import os
class Config(object):
SECRET_KEY = os.getenv(`SECRET`)
MAIL_SERVER = os.getenv(`MAIL_SERVER`)
MAIL_PORT = os.getenv("MAIL_PORT")
MAIL_USE_TLS = os.getenv("MAIL_USE_TLS")
MAIL_USERNAME = os.getenv("MAIL_USERNAME")
MAIL_PASSWD = os.getenv("MAIL_PASSWD")
SQLALCHEMY_TRACK_MODIFICATIONS = False
def init_app(self):
pass
class DevConfig(Config):
DEBUG = True
SQLALCHEMY_DATABASE_URI = os.getenv("DEV_SQLALCHEMY_DATABASE_URI") or "mysql+pymysql://root:qwe123@127.0.0.1/flasky"
class TestingConfig(Config):
Testing = True
SQLALCHEMY_DATABASE_URI = os.getenv("TEST_SQLALCHEMY_DATABASE_URI") or "mysql+pymysql://root:qwe123@127.0.0.1/flasky"
class ProdConfig(Config):
SQLALCHEMY_DATABASE_URI = os.getenv("SQLALCHEMY_DATABASE_URI") or "mysql+pymysql://root:qwe123@127.0.0.1/flasky"
config = {
"dev":DevConfig,
"test":TestingConfig,
"prod":ProdConfig,
"default":DevConfig
}
新增內容到 .env 檔案
# .env
...
SECRET_KEY = 81785a8c-1f9a-4cfb-bc9d-90a8374bbc15
MAIL_SERVER = xxx
MAIL_PORT = xxx
MAIL_USE_TLS = xx
MAIL_USERNAME = tester
MAIL_PASSWD = qwe123
DEV_SQLALCHEMY_DATABASE_URI= xxx
TEST_SQLALCHEMY_DATABASE_URI=xxx
SQLALCHEMY_DATABASE_URI = xxx
初始化log
當應用執行起來的時候,最佳的做法不應該將錯誤資訊直接輸出到頁面上讓使用者看到,這樣做既不專業,也不安全。最佳的做法是當應用發生錯誤的時候,應該直接將使用者導向 500 頁面,然後將發生的錯誤使用log記錄下來供開發進行調查。
# app/__init__.py
from logging.handlers import SMTPHandler,RotatingFileHandler
def create_app(config_name):
...
if not app.debug:
# 記錄到檔案
if not os.path.exists(`logs`):
os.mkdir(`logs`)
file_handler = RotatingFileHandler(`logs/flasky.log`,maxBytes=10240,backupCount=10)
file_handler.setFormatter(logging.Formatter(
`%(asctime)s %(levelname)s: %(message)s [in %(pathname)s:%(lineno)d]`))
file_handler.setLevel(logging.INFO)
app.logger.addHandler(file_handler)
app.logger.info(`app start.`)
# 傳送郵件,可不設定
auth = None
if app.config[`MAIL_USERNAME`] or app.config[`MAIL_PASSWD`]:
auth = (app.config[`MAIL_USERNAME`],app.config[`MAIL_PASSWD`])
secure = None
if app.config[`MAIL_USE_SSL`]:
secure = ()
mail_handler = SMTPHandler(
mailhost=app.config[`MAIL_SERVER`],
fromaddr=app.config[`MAIL_USERNAME`],
toaddrs=app.config[`ADMINS`],
subject="flasky Error",
credentials=auth,secure=secure)
mail_handler.setLevel(logging.ERROR)
app.logger.addHandler(mail_handler)
藍圖 / 即插檢視
使用功能模組來分割藍圖,使用即插檢視來分離路由和邏輯處理。方便程式碼管理。
新建 index 資料夾,並新增 __init__.py 檔案
# index/__init__.py
from flask import Blueprint
index_bp = Blueprint("index",__name__)
from . import views,routes
# index/views.py
from flask.views import MethodView
from flask import render_template
class Index(MethodView):
def get(self):
return render_template("index.html")
# index/routes.py
from index import index_bp
from index.views import Index
index_bp.add_url_rule(`/`,view_func=Index.as_view(`index`))
# 當需要url_for 的時候,可以使用 index 這個名字 index.index
# url_for(`index.index`) index 可以類比為就是這個函式的名字
以上完成了一個藍圖的基本設定。接下來新增藍圖到app例項
# app/__init__.py
def create_app(config_name):
...
from app.index import index_bp
app.register_blueprint(index_bp)
...
return app
測試
測試初始化功能是否正常
pipenv shell
flask run
開啟 http://localhost:5000 檢視是否存在錯誤
程式碼地址:https://github.com/TheFifthMa…
參考
推薦閱讀: 《OReilly.Flask.Web.Development.2nd.Edition》