You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 8, 2024. It is now read-only.
I'm trying to get tweets from multiple Twitter accounts during a given time period. I'm only getting a fraction of the tweets that I know are going out of the three accounts in a given period. Below is the code, what am I doing wrong, or what should be changed?
=================================
accounts = ['XXX','XXX','XXX']
for screenname in accounts:
tweetCriteria = got.manager.TweetCriteria().setUsername(screenname)
.setSince("2020-09-01")
.setSince("2020-09-16")
allTweets = got.manager.TweetManager.getTweets(tweetCriteria)
for tweet in allTweets:
print (tweet.date,tweet.permalink,tweet.text)
I'm trying to get tweets from multiple Twitter accounts during a given time period. I'm only getting a fraction of the tweets that I know are going out of the three accounts in a given period. Below is the code, what am I doing wrong, or what should be changed?
=================================
accounts = ['XXX','XXX','XXX']
for screenname in accounts:
tweetCriteria = got.manager.TweetCriteria().setUsername(screenname)
.setSince("2020-09-01")
.setSince("2020-09-16")
allTweets = got.manager.TweetManager.getTweets(tweetCriteria)
for tweet in allTweets:
print (tweet.date,tweet.permalink,tweet.text)