1 2 3 4 5 6 7
from flask import Flask from app.config import Config app = Flask(__name__) app.config.from_object(Config) from app import routes