Does anyone know of a Python lib for OAuth 2.0? Specifically one that includes functionality for creating providers.
|
|
This seems a good implementation for an oauth2 provider written in django: http://hiidef.github.com/oauth2app/ |
|||||||
|
|
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). |
|||
|
|
|
wish this article would help http://pydanny.com/the-sorry-state-of-python-oauth-providers.html |
|||||
|
|
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. |
|||
|
|
|
This one seems to be the most complete standalone implementation of an OAuth2 provider at the moment. |
|||
|
|
|
This one seems to have 2.0 support but I didn't use it: https://github.com/facebook/tornado/blob/master/tornado/auth.py |
|||||
|
|
You have already found it by now but for anyone else looking for an answer try this: |
|||||
|