Top "Flask-login" questions

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

How to track the current user in flask-login?

I m trying to use the current user in my view from flask-login. So i tried to g object I …

python python-2.7 flask flask-login flask-extensions
How to use g.user global in flask

As I understand the g variable in Flask, it should provide me with a global place to stash data like …

python flask jinja2 flask-login
flask-login: can't understand how it works

I'm trying to understand how Flask-Login works. I see in their documentation that they use a pre-populated list of users. …

python mysql flask-login
ImportError: No module named flask.ext.login

I have a problem with flask_login module. i have installed flask_login module successfully. Also from the command prompt …

python flask flask-login
sqlalchemy.exc.ArgumentError: Could not parse rfc1738 URL from string

I'm learning flask web microframework and after initialization of my database I run flask db init I run flask db …

python-3.x flask flask-sqlalchemy flask-login flask-migrate
Python Flask: keeping track of user sessions? How to get Session Cookie ID?

I want to build a simple webapp as part of my learning activity. Webapp is supposed to ask for user …

python session flask flask-login
how to access form data using flask?

My login endpoint looks like @app.route('/login/', methods=['GET', 'POST']) def login(): if request.method == 'POST': print …

python flask flask-extensions flask-login
is_authenticated() raises TypeError TypeError: 'bool' object is not callable

I tried to use is_authenticated() in a view, but got the error `TypeError: 'bool' object is not callable. Why …

python flask flask-login
Flask-Login - How to get Session ID

Am doing a project with Flask, Gevent and web socket using flask development server environment. I used flask_login. Here …

python-2.7 flask flask-sqlalchemy flask-login flask-extensions