Ejemplo n.º 1
0
def results_endpoint():
    """GET end point to return results information"""

    auth = Auth(app)
    if not auth.authenticate_request():
        return auth.unauthorized_response()

    return results_json()
Ejemplo n.º 2
0
def create_app():
    app = Flask(__name__)
    app.secret_key = "lmw"

    # 设置配置文件
    app.config.from_object("config.DevelopmentConfig")

    db.init_app(app)
    Auth(app)

    from .main import main as main_blueprint
    app.register_blueprint(main_blueprint)

    return app