Nauč se Python > Kurzy > Python for beginners in Tieto Czech > Regular Expressions > Final Assignment

Final Assignment – Řešení [6]

import os
import click
from flask_migrate import Migrate
from app import create_app, db

@pytest.fixture
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
migrate = Migrate(app, db)

@app.shell_context_processor
def make_shell_context():
    return dict(db=db)

@app.route('/')
def hello():
    return "Hello World!"

Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.