Introduction to Flask-User

preview_player
Показать описание
Flask-User provides quick setup for common user management system elements in Flask apps, including session handling, emails, views, and secure passwords.

WORK WITH ME👇🏼

✅ Implement features and fix bugs in your app: Live, one-on-one screenshare
Рекомендации по теме
Комментарии
Автор

if you want to avoid LEGACY ERROR from Flask-User lib, but avoid downgrading whole library to v0.6, you have to replace lines:
db_adapter = ...
user_manager = ...
with a:
user_manager = UserManager(app, db, User)

Great video btw!! Looking forward for more stuff from you, Anthony!!

swojak.a
Автор

Hey man, congrats from France. Great videos. Just enrolled in your Flask course on prettyprinted, Keep going

paulgaiani-porquet
Автор

404: Page not found error when I try to access the code link.

anu
Автор

Do you have a MongoDB version in your courses?

mstardomfinance
Автор

Awesome, I'm getting done lot things correctly from your videos thanx a lot man, Series request: Complete Blog :)

sanjayshr
Автор

Great tutorial, you made me go with Flask, great content
!

franndyabreu
Автор

How to show my custom login page and registration page with flask-user??

shivamkapoor
Автор

Hello there, i've been working on flask but i want to know that can i use 2 user_loader method in flask app. Beacuse i hace 2 Accounts 1.Student 2. Member so if i use 1 user_loader method it works fine but if i use 2 user_loader method then i can't protext my one account to access another account. Can you ple tell what to do in that phase.i've searched in bunch of website but i didn't get antyhing.

luckygautam
Автор

Gotta update this for Flask-User v.1.0 The API is quite different. If you look at the docs though it is not too hard to adapt from flask_user v.0.6. See the comment below by @Arkadiusz Swojak

Achrononmaster
Автор

404 error page not found. Kindly fix link for code

rohailqamar
Автор

What's the difference between flask admin and flask user

blossombabalola
Автор

Flask-User is not actively maintained anymore I think. What extensions would you recommend to build a robust yes simple-to-code user system in Flask (and MongoDB)? Thanks

menggao
Автор

Such a great tutorial! I was able to follow along, understand the concepts clearly, and was even able to determine how I should configure this for multiple files (I tend to avoid a single file approach for scalability).

Thank you for your efforts in sharing your knowledge on all your videos.

Would it be possible to show setting up roles and rolebased settings?

emphotographer
Автор

Hi How to add extra fields for register form in flask-user registration. like first_name last_name and address etc.

jayachandraB
Автор

Anthony, can you make a tutorial on using Celery to send asynchronous emails in Flask? I would really be interested in seeing a tut on that because I am having issues with my current app and trying to implement that. Thanks!

kaistullich
Автор

You have placed everything in one file here, for a simple app. How would you break this out to use in a larger app?

JeffGreer
Автор

I am getting a "EMAIL' INPUT box in the registration form which does not seem to work, How is that you are not getting the same.

shobinp
Автор

Best video ever you cover what other people do really useful every time I need something I know where to go.

what's the difference between flask-login and flask-user and which one would you recommend

quechon
Автор

Add:


@app.before_first_request
def create_tables():
db.create_all()



to create tables.

zaqwsx