Change Tabs to Spaces
authorSantosh Kumar <sntshkmr60@gmail.com>
Thu, 14 Feb 2013 09:16:44 +0000 (14:46 +0530)
committerSantosh Kumar <sntshkmr60@gmail.com>
Thu, 14 Feb 2013 09:16:44 +0000 (14:46 +0530)
examples/streaming.py
tweepy/api.py
tweepy/auth.py
tweepy/models.py

index ece230c9f87a5658c0e187a20959615a68c75211..41e200a0a43f16e00e19ccbf4121109452628e6b 100644 (file)
@@ -2,7 +2,7 @@ from tweepy.streaming import StreamListener
 from tweepy import OAuthHandler
 from tweepy import Stream
 
-# Go to http://dev.twitter.com and create an app. 
+# Go to http://dev.twitter.com and create an app.
 # The consumer key and secret will be generated for you after
 consumer_key=""
 consumer_secret=""
@@ -13,21 +13,21 @@ access_token=""
 access_token_secret=""
 
 class StdOutListener(StreamListener):
-       """ A listener handles tweets are the received from the stream. 
-       This is a basic listener that just prints received tweets to stdout.
+    """ A listener handles tweets are the received from the stream.
+    This is a basic listener that just prints received tweets to stdout.
 
-       """
-       def on_data(self, data):
-               print data
-               return True
+    """
+    def on_data(self, data):
+        print data
+        return True
 
-       def on_error(self, status):
-               print status
+    def on_error(self, status):
+        print status
 
 if __name__ == '__main__':
-       l = StdOutListener()
-       auth = OAuthHandler(consumer_key, consumer_secret)
-       auth.set_access_token(access_token, access_token_secret)
+    l = StdOutListener()
+    auth = OAuthHandler(consumer_key, consumer_secret)
+    auth.set_access_token(access_token, access_token_secret)
 
-       stream = Stream(auth, l)        
-       stream.filter(track=['basketball'])
+    stream = Stream(auth, l)
+    stream.filter(track=['basketball'])
index 273e059d9271e93a0c28f0766764f687305197e2..5beb0ce991ffd7443aafa6b3e3b15ba377bd95e9 100644 (file)
@@ -267,7 +267,7 @@ class API(object):
 
     """ Perform bulk look up of friendships from user ID or screenname """
     def lookup_friendships(self, user_ids=None, screen_names=None):
-           return self._lookup_friendships(list_to_csv(user_ids), list_to_csv(screen_names))
+        return self._lookup_friendships(list_to_csv(user_ids), list_to_csv(screen_names))
 
     _lookup_friendships = bind_api(
         path = '/friendships/lookup.json',
index b770ebb83f64134dc89a00cbd00e5d4d302a81a9..27890aa439c1cc230bc0633969b84c36a2a9f62b 100644 (file)
@@ -138,9 +138,9 @@ class OAuthHandler(AuthHandler):
                 oauth_consumer=self._consumer,
                 http_method='POST', http_url=url,
                 parameters = {
-                           'x_auth_mode': 'client_auth',
-                           'x_auth_username': username,
-                           'x_auth_password': password
+                    'x_auth_mode': 'client_auth',
+                    'x_auth_username': username,
+                    'x_auth_password': password
                 }
             )
             request.sign_request(self._sigmethod, self._consumer, None)
index fe87adb0779d56d2cf20878d1b649f539912c2d7..8257e51096e9ce38f30051000b0494a918f82848 100644 (file)
@@ -315,7 +315,7 @@ class Relationship(Model):
         result = cls(api)
         for k,v in json.items():
             if k == 'connections':
-               setattr(result, 'is_following', 'following' in v)
+                setattr(result, 'is_following', 'following' in v)
                 setattr(result, 'is_followed_by', 'followed_by' in v)
             else:
                 setattr(result, k, v)