Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created August 15, 2020 05:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/6f45d36d74ba53c7c5e92ec43ea0695b to your computer and use it in GitHub Desktop.
Save aniruddha27/6f45d36d74ba53c7c5e92ec43ea0695b to your computer and use it in GitHub Desktop.
# Streaming tweets from user timeline
user = "AnalyticsVidhya"
public_tweet = api.user_timeline(id=user,count=5)
for tweet in public_tweet:
print("-->",tweet.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment