Created
August 15, 2020 05:24
-
-
Save aniruddha27/6f45d36d74ba53c7c5e92ec43ea0695b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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