May 2018
Intermediate to advanced
380 pages
9h 37m
English
Flask does not include a login decorator function, but the documentation does provide an example of how to roll your own (http://flask.pocoo.org/docs/0.12/patterns/viewdecorators/). This should not be used for production use, even if it copies the Flask functionality, as you would then be responsible for ensuring that any modifications to your code don't affect the login functionality:
from functools import wraps
Read now
Unlock full access