Aleks V
Aleks V

Reputation: 29

"python-social-auth" or "django-social-auth"

I am new in social networks. I have a project on django (v1.10.1). I'm trying to add authorization.

What better to use "python-social-auth" or "django-social-auth"?

Upvotes: 0

Views: 341

Answers (2)

Mayank Jain
Mayank Jain

Reputation: 476

Python-social-auth is derived from django-social-auth with the idea of generalizing the process to suit the different frameworks around. So the newest version is "python-social-auth". And it is split in smaller components that focus on providing a simpler functionality. so for django u can use "social-auth-app-django". More details of this can get from this link. http://python-social-auth-docs.readthedocs.io/en/latest/installing.html

Upvotes: 1

Daniel Roseman
Daniel Roseman

Reputation: 599956

Django-social-auth has a very clear warning that it is deprecated in favour of python-social-auth.

Upvotes: 3

Related Questions