Introduction to Flask (Part 6) - task management application (FlaskTaskr)

preview_player
Показать описание
Let's build a task manager in Flask. FlaskTaskr

Рекомендации по теме
Комментарии
Автор

Where is the rest of this series, Michael? Does it belong with "Intro To Flask (part 1)" etc? Or does it belong to a different set? I hadn't seen this video before.

Colstonewall
Автор

@app.route('/set_cookie')
def cookie_insertion():
redirect_to_index = redirect('/index')
response = )
response.set_cookie('cookie_name', value='values')
return response

hermanmu
Автор

Thanks for your hard work. Would like to see a tutorial on how to structure  a large app. Not have everything in routes.py, multi models, views. Thanks

frocco
Автор

Hi Michael, very nice tutorial. Thanks.

Not sure I'm phrasing this correctly, but I'd like to see how to do sessions without accounts, eg, an application that checks a query against some database and stores queries as long as a tab is open, preferably client side. Ideally this might be done without JavaScript but with cookies? Seems like overkill to be writing to the database.

pantaraxia
visit shbcf.ru