reverted the encoding fix that tommy made in lieu of a different crazy hack
[twitter-api-cdsw-solutions] / twitter3.py
index 897b7b322c7d484b5ea301ebf32eacd2b22d9ba8..16329e355c65ecae86a1405d1e08d46d77b351d9 100644 (file)
@@ -1,3 +1,4 @@
+import encoding_fix
 import tweepy
 from twitter_authentication import CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET
 
@@ -9,4 +10,4 @@ api = tweepy.API(auth)
 public_tweets = api.search("data science", count=20)
 
 for tweet in public_tweets:
-    print tweet.user.screen_name + "\t" + str(tweet.created_at) + "\t" + tweet.text
+    print(tweet.user.screen_name + "\t" + str(tweet.created_at) + "\t" + tweet.text)

Benjamin Mako Hill || Want to submit a patch?