What's the best solution for OpenID with Django?
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Unforgiving Himalayas Looping
--
Chapters
00:00 What'S The Best Solution For Openid With Django?
01:33 Answer 1 Score 12
01:57 Answer 2 Score 5
02:05 Accepted Answer Score 87
02:30 Answer 4 Score 8
02:45 Thank you
--
Full question
https://stackoverflow.com/questions/2123...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #django #openid
#avk47
ACCEPTED ANSWER
Score 87
The one that has proven to work best for me, and which seems most up-to-date is the one over at launchpad.
It integrated seamlessly with my application that already utilizes the django.auth module.
https://launchpad.net/django-openid-auth
To get a copy run:
bzr branch lp:django-openid-auth
Or install it via PyPI
pip install django-openid-auth
ANSWER 2
Score 12
I prefer django-authopenid, but I think most of the mature solutions are pretty equal at this point. Still, it is what I see used the most. I've made a handful of customizations to how we use it without having to actually fork it, and that's a huge plus in my book. In other words, its fairly hookable.
ANSWER 3
Score 8
Don't forget Elf Sternberg's fork of django-socialauth - he's working to clean up what he sees as a lot of bad implementation decisions in the original socialauth app. Looks clean so far but it's unclear whether his project will have momentum.
ANSWER 4
Score 5
django-socialauth is good for me