Skip to content

Instantly share code, notes, and snippets.

@andersonberg
Created August 28, 2014 19:34
Show Gist options
  • Save andersonberg/30750ee4c8c00f5b715c to your computer and use it in GitHub Desktop.
Save andersonberg/30750ee4c8c00f5b715c to your computer and use it in GitHub Desktop.
user_tweets = []
tweets = api.GetUserTimeline(user, count=30)
for tweet in tweets:
user_tweets.append(tweet.text.encode('utf-8') + '\n')
print user_tweets
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment