Writing an OAuth Provider in Python: A Guide + Libraries?

I am looking for an OAuth v1 provider implementation in Python (yes, regardless of GAE and Django). The best I could come up with is to use this library:

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

But he lacks documents, except for a breadboard server and data warehouse. Is there a better approach:

  • Python OAuth Provider Writing Guide?
  • Best documentation and tested library?
+5
source share
2 answers

What about http://oauth.googlecode.com/svn/code/python/oauth/ ? It has both client and server code.

0
source
0

All Articles