FLASK SQLALCHEMY Retirez les doublons

mylist = db.session.query(User.name).all() # get all user.name from db
mylist1 = len(list(dict.fromkeys(mylist))) # remove the duplicate then use len() to find total
Ericsson