PEP8 Cleanup
Attempting to clean up some code. * There were a lot of libraries not being used any longer * Changed some vars named "id" to "id_", id is a reserved var
This commit is contained in:
parent
ad81c73923
commit
95f7abc7a3
1 changed files with 58 additions and 57 deletions
|
|
@ -11,14 +11,9 @@
|
||||||
__author__ = "Ryan McGrath <ryan@venodesigns.net>"
|
__author__ = "Ryan McGrath <ryan@venodesigns.net>"
|
||||||
__version__ = "1.4.6"
|
__version__ = "1.4.6"
|
||||||
|
|
||||||
import cgi
|
|
||||||
import urllib
|
import urllib
|
||||||
import urllib2
|
import urllib2
|
||||||
import urlparse
|
|
||||||
import httplib
|
|
||||||
import httplib2
|
import httplib2
|
||||||
import mimetypes
|
|
||||||
import mimetools
|
|
||||||
import re
|
import re
|
||||||
import inspect
|
import inspect
|
||||||
import time
|
import time
|
||||||
|
|
@ -69,6 +64,7 @@ if not hasattr(oauth, '_version') or float(oauth._version.manual_verstr) <= 1.4:
|
||||||
else:
|
else:
|
||||||
OAUTH_CALLBACK_IN_URL = True
|
OAUTH_CALLBACK_IN_URL = True
|
||||||
|
|
||||||
|
|
||||||
class TwythonError(AttributeError):
|
class TwythonError(AttributeError):
|
||||||
"""
|
"""
|
||||||
Generic error class, catch-all for most Twython issues.
|
Generic error class, catch-all for most Twython issues.
|
||||||
|
|
@ -100,6 +96,7 @@ class TwythonAPILimit(TwythonError):
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return repr(self.msg)
|
return repr(self.msg)
|
||||||
|
|
||||||
|
|
||||||
class TwythonRateLimitError(TwythonError):
|
class TwythonRateLimitError(TwythonError):
|
||||||
"""
|
"""
|
||||||
Raised when you've hit a rate limit. retry_wait_seconds is the number of seconds to
|
Raised when you've hit a rate limit. retry_wait_seconds is the number of seconds to
|
||||||
|
|
@ -126,7 +123,8 @@ class TwythonAuthError(TwythonError):
|
||||||
|
|
||||||
|
|
||||||
class Twython(object):
|
class Twython(object):
|
||||||
def __init__(self, twitter_token = None, twitter_secret = None, oauth_token = None, oauth_token_secret = None, headers=None, callback_url=None, client_args={}):
|
def __init__(self, twitter_token=None, twitter_secret=None, oauth_token=None, oauth_token_secret=None, \
|
||||||
|
headers=None, callback_url=None, client_args=None):
|
||||||
"""setup(self, oauth_token = None, headers = None)
|
"""setup(self, oauth_token = None, headers = None)
|
||||||
|
|
||||||
Instantiates an instance of Twython. Takes optional parameters for authentication and such (see below).
|
Instantiates an instance of Twython. Takes optional parameters for authentication and such (see below).
|
||||||
|
|
@ -140,7 +138,8 @@ class Twython(object):
|
||||||
headers - User agent header, dictionary style ala {'User-Agent': 'Bert'}
|
headers - User agent header, dictionary style ala {'User-Agent': 'Bert'}
|
||||||
client_args - additional arguments for HTTP client (see httplib2.Http.__init__), e.g. {'timeout': 10.0}
|
client_args - additional arguments for HTTP client (see httplib2.Http.__init__), e.g. {'timeout': 10.0}
|
||||||
|
|
||||||
** Note: versioning is not currently used by search.twitter functions; when Twitter moves their junk, it'll be supported.
|
** Note: versioning is not currently used by search.twitter functions;
|
||||||
|
when Twitter moves their junk, it'll be supported.
|
||||||
"""
|
"""
|
||||||
# Needed for hitting that there API.
|
# Needed for hitting that there API.
|
||||||
self.request_token_url = 'http://twitter.com/oauth/request_token'
|
self.request_token_url = 'http://twitter.com/oauth/request_token'
|
||||||
|
|
@ -161,6 +160,8 @@ class Twython(object):
|
||||||
self.consumer = None
|
self.consumer = None
|
||||||
self.token = None
|
self.token = None
|
||||||
|
|
||||||
|
client_args = client_args or {}
|
||||||
|
|
||||||
if self.twitter_token is not None and self.twitter_secret is not None:
|
if self.twitter_token is not None and self.twitter_secret is not None:
|
||||||
self.consumer = oauth.Consumer(self.twitter_token, self.twitter_secret)
|
self.consumer = oauth.Consumer(self.twitter_token, self.twitter_secret)
|
||||||
|
|
||||||
|
|
@ -176,6 +177,7 @@ class Twython(object):
|
||||||
# If they don't do authentication, but still want to request unprotected resources, we need an opener.
|
# If they don't do authentication, but still want to request unprotected resources, we need an opener.
|
||||||
self.client = httplib2.Http(**client_args)
|
self.client = httplib2.Http(**client_args)
|
||||||
# register available funcs to allow listing name when debugging.
|
# register available funcs to allow listing name when debugging.
|
||||||
|
|
||||||
def setFunc(key):
|
def setFunc(key):
|
||||||
return lambda **kwargs: self._constructFunc(key, **kwargs)
|
return lambda **kwargs: self._constructFunc(key, **kwargs)
|
||||||
for key in api_table.keys():
|
for key in api_table.keys():
|
||||||
|
|
@ -196,10 +198,10 @@ class Twython(object):
|
||||||
# and junk, handle errors/authentication
|
# and junk, handle errors/authentication
|
||||||
if fn['method'] == 'POST':
|
if fn['method'] == 'POST':
|
||||||
myargs = urllib.urlencode(dict([k, Twython.encode(v)] for k, v in kwargs.items()))
|
myargs = urllib.urlencode(dict([k, Twython.encode(v)] for k, v in kwargs.items()))
|
||||||
resp, content = self.client.request(base, fn['method'], myargs, headers = self.headers)
|
resp, content = self.client.request(base, fn['method'], myargs, headers=self.headers)
|
||||||
else:
|
else:
|
||||||
myargs = ["%s=%s" %(key, value) for (key, value) in kwargs.iteritems()]
|
myargs = ["%s=%s" % (key, value) for (key, value) in kwargs.iteritems()]
|
||||||
url = "%s?%s" %(base, "&".join(myargs))
|
url = "%s?%s" % (base, "&".join(myargs))
|
||||||
resp, content = self.client.request(url, fn['method'], headers=self.headers)
|
resp, content = self.client.request(url, fn['method'], headers=self.headers)
|
||||||
|
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
|
|
@ -223,7 +225,7 @@ class Twython(object):
|
||||||
|
|
||||||
request_tokens = dict(parse_qsl(content))
|
request_tokens = dict(parse_qsl(content))
|
||||||
|
|
||||||
oauth_callback_confirmed = request_tokens.get('oauth_callback_confirmed')=='true'
|
oauth_callback_confirmed = request_tokens.get('oauth_callback_confirmed') == 'true'
|
||||||
|
|
||||||
if not OAUTH_LIB_SUPPORTS_CALLBACK and callback_url != 'oob' and oauth_callback_confirmed:
|
if not OAUTH_LIB_SUPPORTS_CALLBACK and callback_url != 'oob' and oauth_callback_confirmed:
|
||||||
import warnings
|
import warnings
|
||||||
|
|
@ -231,11 +233,11 @@ class Twython(object):
|
||||||
oauth_callback_confirmed = False
|
oauth_callback_confirmed = False
|
||||||
|
|
||||||
auth_url_params = {
|
auth_url_params = {
|
||||||
'oauth_token' : request_tokens['oauth_token'],
|
'oauth_token': request_tokens['oauth_token'],
|
||||||
}
|
}
|
||||||
|
|
||||||
# Use old-style callback argument
|
# Use old-style callback argument
|
||||||
if OAUTH_CALLBACK_IN_URL or (callback_url!='oob' and not oauth_callback_confirmed):
|
if OAUTH_CALLBACK_IN_URL or (callback_url != 'oob' and not oauth_callback_confirmed):
|
||||||
auth_url_params['oauth_callback'] = callback_url
|
auth_url_params['oauth_callback'] = callback_url
|
||||||
|
|
||||||
request_tokens['auth_url'] = self.authenticate_url + '?' + urllib.urlencode(auth_url_params)
|
request_tokens['auth_url'] = self.authenticate_url + '?' + urllib.urlencode(auth_url_params)
|
||||||
|
|
@ -259,10 +261,10 @@ class Twython(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def constructApiURL(base_url, params):
|
def constructApiURL(base_url, params):
|
||||||
return base_url + "?" + "&".join(["%s=%s" %(Twython.unicode2utf8(key), urllib.quote_plus(Twython.unicode2utf8(value))) for (key, value) in params.iteritems()])
|
return base_url + "?" + "&".join(["%s=%s" % (Twython.unicode2utf8(key), urllib.quote_plus(Twython.unicode2utf8(value))) for (key, value) in params.iteritems()])
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def shortenURL(url_to_shorten, shortener = "http://is.gd/api.php", query = "longurl"):
|
def shortenURL(url_to_shorten, shortener="http://is.gd/api.php", query="longurl"):
|
||||||
"""shortenURL(url_to_shorten, shortener = "http://is.gd/api.php", query = "longurl")
|
"""shortenURL(url_to_shorten, shortener = "http://is.gd/api.php", query = "longurl")
|
||||||
|
|
||||||
Shortens url specified by url_to_shorten.
|
Shortens url specified by url_to_shorten.
|
||||||
|
|
@ -275,9 +277,9 @@ class Twython(object):
|
||||||
content = urllib2.urlopen(shortener + "?" + urllib.urlencode({query: Twython.unicode2utf8(url_to_shorten)})).read()
|
content = urllib2.urlopen(shortener + "?" + urllib.urlencode({query: Twython.unicode2utf8(url_to_shorten)})).read()
|
||||||
return content
|
return content
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("shortenURL() failed with a %s error code." % `e.code`)
|
raise TwythonError("shortenURL() failed with a %s error code." % e.code)
|
||||||
|
|
||||||
def bulkUserLookup(self, ids = None, screen_names = None, version = 1, **kwargs):
|
def bulkUserLookup(self, ids=None, screen_names=None, version=1, **kwargs):
|
||||||
""" bulkUserLookup(self, ids = None, screen_names = None, version = 1, **kwargs)
|
""" bulkUserLookup(self, ids = None, screen_names = None, version = 1, **kwargs)
|
||||||
|
|
||||||
A method to do bulk user lookups against the Twitter API. Arguments (ids (numbers) / screen_names (strings)) should be flat Arrays that
|
A method to do bulk user lookups against the Twitter API. Arguments (ids (numbers) / screen_names (strings)) should be flat Arrays that
|
||||||
|
|
@ -292,10 +294,10 @@ class Twython(object):
|
||||||
|
|
||||||
lookupURL = Twython.constructApiURL("http://api.twitter.com/%d/users/lookup.json" % version, kwargs)
|
lookupURL = Twython.constructApiURL("http://api.twitter.com/%d/users/lookup.json" % version, kwargs)
|
||||||
try:
|
try:
|
||||||
resp, content = self.client.request(lookupURL, "POST", headers = self.headers)
|
resp, content = self.client.request(lookupURL, "POST", headers=self.headers)
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("bulkUserLookup() failed with a %s error code." % `e.code`, e.code)
|
raise TwythonError("bulkUserLookup() failed with a %s error code." % e.code, e.code)
|
||||||
|
|
||||||
def search(self, **kwargs):
|
def search(self, **kwargs):
|
||||||
"""search(search_query, **kwargs)
|
"""search(search_query, **kwargs)
|
||||||
|
|
@ -309,7 +311,7 @@ class Twython(object):
|
||||||
"""
|
"""
|
||||||
searchURL = Twython.constructApiURL("http://search.twitter.com/search.json", kwargs)
|
searchURL = Twython.constructApiURL("http://search.twitter.com/search.json", kwargs)
|
||||||
try:
|
try:
|
||||||
resp, content = self.client.request(searchURL, "GET", headers = self.headers)
|
resp, content = self.client.request(searchURL, "GET", headers=self.headers)
|
||||||
|
|
||||||
if int(resp.status) == 420:
|
if int(resp.status) == 420:
|
||||||
retry_wait_seconds = resp['retry-after']
|
retry_wait_seconds = resp['retry-after']
|
||||||
|
|
@ -320,7 +322,7 @@ class Twython(object):
|
||||||
|
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("getSearchTimeline() failed with a %s error code." % `e.code`, e.code)
|
raise TwythonError("getSearchTimeline() failed with a %s error code." % e.code, e.code)
|
||||||
|
|
||||||
def searchTwitter(self, **kwargs):
|
def searchTwitter(self, **kwargs):
|
||||||
"""use search() ,this is a fall back method to support searchTwitter()
|
"""use search() ,this is a fall back method to support searchTwitter()
|
||||||
|
|
@ -340,10 +342,10 @@ class Twython(object):
|
||||||
"""
|
"""
|
||||||
searchURL = Twython.constructApiURL("http://search.twitter.com/search.json?q=%s" % Twython.unicode2utf8(search_query), kwargs)
|
searchURL = Twython.constructApiURL("http://search.twitter.com/search.json?q=%s" % Twython.unicode2utf8(search_query), kwargs)
|
||||||
try:
|
try:
|
||||||
resp, content = self.client.request(searchURL, "GET", headers = self.headers)
|
resp, content = self.client.request(searchURL, "GET", headers=self.headers)
|
||||||
data = simplejson.loads(content.decode('utf-8'))
|
data = simplejson.loads(content.decode('utf-8'))
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("searchGen() failed with a %s error code." % `e.code`, e.code)
|
raise TwythonError("searchGen() failed with a %s error code." % e.code, e.code)
|
||||||
|
|
||||||
if not data['results']:
|
if not data['results']:
|
||||||
raise StopIteration
|
raise StopIteration
|
||||||
|
|
@ -361,8 +363,8 @@ class Twython(object):
|
||||||
except TypeError:
|
except TypeError:
|
||||||
raise TwythonError("searchGen() exited because page takes str")
|
raise TwythonError("searchGen() exited because page takes str")
|
||||||
except e:
|
except e:
|
||||||
raise TwythonError("searchGen() failed with %s error code" %\
|
raise TwythonError("searchGen() failed with %s error code" % \
|
||||||
`e.code`, e.code)
|
e.code, e.code)
|
||||||
|
|
||||||
for tweet in self.searchGen(search_query, **kwargs):
|
for tweet in self.searchGen(search_query, **kwargs):
|
||||||
yield tweet
|
yield tweet
|
||||||
|
|
@ -372,7 +374,7 @@ class Twython(object):
|
||||||
searchTwitterGen()"""
|
searchTwitterGen()"""
|
||||||
return self.searchGen(search_query, **kwargs)
|
return self.searchGen(search_query, **kwargs)
|
||||||
|
|
||||||
def isListMember(self, list_id, id, username, version = 1):
|
def isListMember(self, list_id, id_, username, version=1):
|
||||||
""" isListMember(self, list_id, id, version)
|
""" isListMember(self, list_id, id, version)
|
||||||
|
|
||||||
Check if a specified user (id) is a member of the list in question (list_id).
|
Check if a specified user (id) is a member of the list in question (list_id).
|
||||||
|
|
@ -386,12 +388,12 @@ class Twython(object):
|
||||||
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
resp, content = self.client.request("http://api.twitter.com/%d/%s/%s/members/%s.json" % (version, username, list_id, `id`), headers = self.headers)
|
resp, content = self.client.request("http://api.twitter.com/%d/%s/%s/members/%s.json" % (version, username, list_id, id_), headers=self.headers)
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("isListMember() failed with a %d error code." % e.code, e.code)
|
raise TwythonError("isListMember() failed with a %d error code." % e.code, e.code)
|
||||||
|
|
||||||
def isListSubscriber(self, username, list_id, id, version = 1):
|
def isListSubscriber(self, username, list_id, id_, version=1):
|
||||||
""" isListSubscriber(self, list_id, id, version)
|
""" isListSubscriber(self, list_id, id, version)
|
||||||
|
|
||||||
Check if a specified user (id) is a subscriber of the list in question (list_id).
|
Check if a specified user (id) is a subscriber of the list in question (list_id).
|
||||||
|
|
@ -405,7 +407,7 @@ class Twython(object):
|
||||||
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
resp, content = self.client.request("http://api.twitter.com/%d/%s/%s/following/%s.json" % (version, username, list_id, `id`), headers = self.headers)
|
resp, content = self.client.request("http://api.twitter.com/%d/%s/%s/following/%s.json" % (version, username, list_id, id_), headers=self.headers)
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
except HTTPError, e:
|
except HTTPError, e:
|
||||||
raise TwythonError("isListMember() failed with a %d error code." % e.code, e.code)
|
raise TwythonError("isListMember() failed with a %d error code." % e.code, e.code)
|
||||||
|
|
@ -421,7 +423,7 @@ class Twython(object):
|
||||||
tile - Optional (defaults to True). If set to true the background image will be displayed tiled. The image will not be tiled otherwise.
|
tile - Optional (defaults to True). If set to true the background image will be displayed tiled. The image will not be tiled otherwise.
|
||||||
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
||||||
"""
|
"""
|
||||||
return self._media_update('http://api.twitter.com/%d/account/update_profile_background_image.json' % version, {'image':(file_, open(file_, 'rb'))}, params={'tile':tile})
|
return self._media_update('http://api.twitter.com/%d/account/update_profile_background_image.json' % version, {'image': (file_, open(file_, 'rb'))}, params={'tile': tile})
|
||||||
|
|
||||||
def updateProfileImage(self, file_, version=1):
|
def updateProfileImage(self, file_, version=1):
|
||||||
""" updateProfileImage(filename)
|
""" updateProfileImage(filename)
|
||||||
|
|
@ -432,7 +434,7 @@ class Twython(object):
|
||||||
image - Required. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down.
|
image - Required. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down.
|
||||||
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
||||||
"""
|
"""
|
||||||
return self._media_update('http://api.twitter.com/%d/account/update_profile_image.json' % version, {'image':(file_, open(file_, 'rb'))})
|
return self._media_update('http://api.twitter.com/%d/account/update_profile_image.json' % version, {'image': (file_, open(file_, 'rb'))})
|
||||||
|
|
||||||
# statuses/update_with_media
|
# statuses/update_with_media
|
||||||
def updateStatusWithMedia(self, file_, version=1, **params):
|
def updateStatusWithMedia(self, file_, version=1, **params):
|
||||||
|
|
@ -444,7 +446,7 @@ class Twython(object):
|
||||||
image - Required. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down.
|
image - Required. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down.
|
||||||
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
version (number) - Optional. API version to request. Entire Twython class defaults to 1, but you can override on a function-by-function or class basis - (version=2), etc.
|
||||||
"""
|
"""
|
||||||
return self._media_update('https://upload.twitter.com/%d/statuses/update_with_media.json' % version, {'media':(file_, open(file_, 'rb'))}, **params)
|
return self._media_update('https://upload.twitter.com/%d/statuses/update_with_media.json' % version, {'media': (file_, open(file_, 'rb'))}, **params)
|
||||||
|
|
||||||
def _media_update(self, url, file_, params={}):
|
def _media_update(self, url, file_, params={}):
|
||||||
oauth_params = {
|
oauth_params = {
|
||||||
|
|
@ -466,7 +468,6 @@ class Twython(object):
|
||||||
req = requests.post(url, data=params, files=file_, headers=self.headers)
|
req = requests.post(url, data=params, files=file_, headers=self.headers)
|
||||||
return req.content
|
return req.content
|
||||||
|
|
||||||
|
|
||||||
def getProfileImageUrl(self, username, size=None, version=1):
|
def getProfileImageUrl(self, username, size=None, version=1):
|
||||||
""" getProfileImageUrl(username)
|
""" getProfileImageUrl(username)
|
||||||
|
|
||||||
|
|
@ -479,13 +480,13 @@ class Twython(object):
|
||||||
"""
|
"""
|
||||||
url = "http://api.twitter.com/%s/users/profile_image/%s.json" % (version, username)
|
url = "http://api.twitter.com/%s/users/profile_image/%s.json" % (version, username)
|
||||||
if size:
|
if size:
|
||||||
url = self.constructApiURL(url, {'size':size})
|
url = self.constructApiURL(url, {'size': size})
|
||||||
|
|
||||||
client = httplib2.Http()
|
client = httplib2.Http()
|
||||||
client.follow_redirects = False
|
client.follow_redirects = False
|
||||||
resp, content = client.request(url, 'GET')
|
resp, content = client.request(url, 'GET')
|
||||||
|
|
||||||
if resp.status in (301,302,303,307):
|
if resp.status in (301, 302, 303, 307):
|
||||||
return resp['location']
|
return resp['location']
|
||||||
elif resp.status == 200:
|
elif resp.status == 200:
|
||||||
return simplejson.loads(content.decode('utf-8'))
|
return simplejson.loads(content.decode('utf-8'))
|
||||||
|
|
@ -503,6 +504,6 @@ class Twython(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def encode(text):
|
def encode(text):
|
||||||
if isinstance(text, (str,unicode)):
|
if isinstance(text, (str, unicode)):
|
||||||
return Twython.unicode2utf8(text)
|
return Twython.unicode2utf8(text)
|
||||||
return str(text)
|
return str(text)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue