Open Source Alternative to ASP.NET Membership

I currently support a Python web application with increasingly complex user / role / permission requirements. We are currently running our own user code, groups, permissions, etc. And maintain the database.

I would like to find something like ASP.NET membership that can help manage user authentication and authorization, rather than risk security issues while continuing to create an increasingly complex custom solution. Are there any such projects worth paying attention to?

+4
source share
1 answer

If you are looking for site user authentication, you might consider openid. People have added openid support for the cherry tree .

If you are looking for more code like user management. I think it depends on what you are doing, while others have already done user management, why not use them. Skeletonz is a CMS written on top of a cherry. If you do not agree with cherrypy, you may also consider Pinax . It is built on Django with the idea of ​​reusing the work that others have done, so you don't need to do it again.

+1
source

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


All Articles