Need python authentication / authorization framework

I am writing a web application that requires authentication / authorization. That is, this web application will allow users to register on the site and gain access to materials inaccessible to anonymous users. Unfortunately, Flask does not come with a built-in authentication / authorization system. Experts do not recommend deploying a user system, so I do not want to do this. Is there a good, complete authentication / authorization platform that I can use for my application?

+6
source share
2 answers

Take a look at Flask-Auth .

+4
source

Fedora Accounting is an extensible JSON-based authnz provider. python-fedora is a module that provides FAS plugins for multiple web frameworks, as well as raw Python modules for communicating with it.

0
source

Source: https://habr.com/ru/post/913491/


All Articles