Skip to content

Instantly share code, notes, and snippets.

@WPettersson
Last active March 12, 2018 11:58
Show Gist options
  • Save WPettersson/f14001b7a91a95099bf8cd9b525a1892 to your computer and use it in GitHub Desktop.
Save WPettersson/f14001b7a91a95099bf8cd9b525a1892 to your computer and use it in GitHub Desktop.
import got
with open("my_file.txt", "w") as myfile:
tweetCriteria = got.manager.TweetCriteria().setUsername('barackobama').setMaxTweets(10)
for tweet in got.manager.TweetManager.getTweets(tweetCriteria):
my_file.write("%s\n" % tweet.text)
my_file.write("%s\n" % tweet.date)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment