Top "Flask-login" questions

Flask-Login provides user session management for the python web framework Flask.

Using flask_login session with jinja2 templates

I have simple jinja2 template with registration/login links, I should hide them when user logged in, I also use …

python python-2.7 flask jinja2 flask-login
@login_required trouble in flask app

I have created a blueprint that handles authenticating. This blue print uses Flask-Login. And has the following, as well as …

python flask flask-login login-required
"TypeError: 'bool' object is not callable" in flask

I have is_active = db.Column(db.Boolean(), nullable=False) field in user model in my flask app now when …

python flask flask-sqlalchemy flask-login
Flask-login and LDAP

I'm developing a webapp with the flask framework as a backend and I need to provide authentication. Since this is …

python flask flask-login
login_required decorator from flask_login not redirecting to previous page

I am using flask_login for login and logout for an app but the redirection back to the previous page …

python flask flask-wtforms flask-login
How do I handle login in flask with multiple blueprints?

I have multiple blueprints that needs to be integrated into a single app. I'm using flask-login to handle logins. However …

python flask-login flask
How to manually install Flask extensions?

I have a Flask project which I've put the flask module (version 0.9) directly beside my app.py file. I've done …

python flask flask-login flask-extensions
Flask-login - AttributeError: 'AnonymousUserMixin' object has no attribute '_sa_instance_state'

I'm setting up a flask application to run an anonymous online experiment. How can I track anonymous participants via the …

python flask flask-login anonymous-users
What does netloc mean?

I'm learning to make login function with Flask-login, and I'm facing with this code in my tutorial that I'm following: @…

python networking flask flask-login
How to pass GET parameters to url using Flask Request

I am aware of how to get the request parameters from a url using Flask Request: request.args.get('&…

python flask request flask-login http-request-parameters