Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need a python authentication / authorization framework

I'm writing a web application that requires authentication / authorization. That is, this web app will allow users to log into the site and gain access to material not accessible to anonymous users. Unfortunately, Flask does not come with a built in authentication / authorization system. Experts highly discourage rolling out a custom system, so I don't want to do this. Is there a good, full-fledged authentication / authorization framework that I can use for my application?

like image 815
Michael Avatar asked Apr 18 '12 06:04

Michael


1 Answers

Have a look at Flask-Auth.

like image 80
ThiefMaster Avatar answered Oct 20 '22 00:10

ThiefMaster