Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
I didn't look into the Django app mentioned in answers below, but maybe that project could be forked. Many pyramid people seemed to have interest in a lib creating OAuth2 providers. – Antti Haapala Jul 11 '12 at 7:37

7 Answers

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

share|improve this answer
+1 I've used this and it's fantastic. – Spike Jan 29 '12 at 18:23
16  
too bad it is django. – Antti Haapala Jul 11 '12 at 7:33

oauthlib is the closest I know. It's a framework-agnostic library that aims to fully implement OAuth 1.0 and 2.0. But so far only supports 1.0 providers and clients, and 2.0 clients (but sadly not providers).

share|improve this answer

wish this article would help

http://pydanny.com/the-sorry-state-of-python-oauth-providers.html

share|improve this answer
2  
Sorry. I want it better. – pydanny Jan 6 at 5:42

lastuser . This currently used by Funnel and Pycon India 2012.

The application is written in Flask can be consumed on a separate subdomain.

Disclaimer: I work for HasGeek company behind the Lastuser.

share|improve this answer

This one seems to be the most complete standalone implementation of an OAuth2 provider at the moment.

https://github.com/StartTheShift/pyoauth2

share|improve this answer

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

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

share|improve this answer
2  
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

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

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

share|improve this answer
7  
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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