Does anyone know of a Python lib for OAuth 2.0? Specifically one that includes functionality for creating providers.

link|improve this question
feedback

4 Answers

This seems a good implementation for an oauth2 provider written in django: http://hiidef.github.com/oauth2app/

link|improve this answer
+1 I've used this and it's fantastic. – Spike Jan 29 at 18:23
feedback

This one seems to have 2.0 support but I didn't use it:

https://github.com/facebook/tornado/blob/master/tornado/auth.py

link|improve this answer
1  
Thanks for the response, but looks like this only provides consumer support. I'm specifically looking for something with functionality for setting up a provider. – ro60 Jan 4 '11 at 14:15
feedback

There is a fork version of simplegeo's python-oauth2 which supported the OAuth 2.0

https://github.com/dgouldin/python-oauth2

link|improve this answer
This is a consumer, not a provider. – Alexander Solovyov May 18 at 12:57
feedback

You have already found it by now but for anyone else looking for an answer try this:

https://github.com/simplegeo/python-oauth2

link|improve this answer
6  
Unfortunately simplegeo python-oauth2 doesn't support OAuth 2. Which is odd as its got OAuth2 in the name. There is a fork that does have support for OAuth2 clients here: github.com/dgouldin/python-oauth2 That said it doesn't look like they have ported over the Server class to support OAuth2 provider creation which is what i'm specifically interested in. – ro60 Apr 27 '11 at 13:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.