Код: Выделить всё
@app.route('/')
def homepage() -> object:
"""
This function loads the homepage.
:return: the homepage index.html
"""
return send_from_directory(
os.path.join(app.root_path, 'templates'),
"index.html"
)
Подробнее здесь: https://stackoverflow.com/questions/596 ... rning-file