Updated examples to work in Python 3.
authorMark Smith <mark.smith@practicalpoetry.co.uk>
Sat, 15 Nov 2014 14:33:35 +0000 (15:33 +0100)
committerMark Smith <mark.smith@practicalpoetry.co.uk>
Sat, 15 Nov 2014 14:33:35 +0000 (15:33 +0100)
examples/oauth.py
examples/streaming.py

index 1399f4a2230894f49e9cc558c713524a0afb7730..6f08dab78634eb58279f2ea80972fba167f72b85 100644 (file)
@@ -1,3 +1,5 @@
+from __future__ import absolute_import, print_function
+
 import tweepy
 
 # == OAuth Authentication ==
@@ -11,7 +13,7 @@ consumer_key=""
 consumer_secret=""
 
 # The access tokens can be found on your applications's Details
-# page located at https://dev.twitter.com/apps (located 
+# page located at https://dev.twitter.com/apps (located
 # under "Your access token")
 access_token=""
 access_token_secret=""
@@ -24,9 +26,9 @@ api = tweepy.API(auth)
 
 # If the authentication was successful, you should
 # see the name of the account print out
-print api.me().name
+print(api.me().name)
 
 # If the application settings are set for "Read and Write" then
-# this line should tweet out the message to your account's 
+# this line should tweet out the message to your account's
 # timeline. The "Read and Write" setting is on https://dev.twitter.com/apps
 api.update_status('Updating using OAuth authentication via Tweepy!')
index 942d7e8c5996f87a8c426313ccfbc6550e4a51b4..e80c53008896002825ac44ca9f96e3364855d771 100644 (file)
@@ -1,3 +1,5 @@
+from __future__ import absolute_import, print_function
+
 from tweepy.streaming import StreamListener
 from tweepy import OAuthHandler
 from tweepy import Stream
@@ -18,11 +20,11 @@ class StdOutListener(StreamListener):
 
     """
     def on_data(self, data):
-        print data
+        print(data)
         return True
 
     def on_error(self, status):
-        print status
+        print(status)
 
 if __name__ == '__main__':
     l = StdOutListener()