2011-03-02 11:04:17 +01:00
|
|
|
This code was originally forked from Leah Culver and Andy Smith's
|
|
|
|
oauth.py code (see net/py-oauth).
|
|
|
|
|
|
|
|
A number of notable differences exist between this code and its
|
|
|
|
forefathers:
|
|
|
|
|
2015-02-11 14:34:46 +01:00
|
|
|
* 100% unit test coverage.
|
|
|
|
* The DataStore object has been completely ripped out.
|
|
|
|
* Classes are no longer prefixed with OAuth.
|
|
|
|
* The Request class now extends from dict.
|
|
|
|
* The library is likely no longer compatible with Python 2.3.
|
|
|
|
* The Client class works and extends from httplib2.
|
2011-03-02 11:04:17 +01:00
|
|
|
|
2016-12-24 14:04:00 +01:00
|
|
|
WWW: https://github.com/joestump/python-oauth2
|