7 lines
No EOL
205 B
Python
7 lines
No EOL
205 B
Python
from flask import Flask, request, redirect, url_for, render_template
|
|
|
|
def create_app():
|
|
# create and configure the app
|
|
app = Flask(__name__)
|
|
app.config.from_pyfile('settings.py')
|
|
return app |