-
Notifications
You must be signed in to change notification settings - Fork 126
Not getting all the tweets. #97
Comments
Not sure if its related, but since about 8 hours ago, I am not getting any tweets to work, just getting the following error; I wonder if twitter changed something? |
I have the same problem @Greatdane . Any news? |
Not to pile on, but same thing as happening here, starting sometime today. |
same thing with me! |
The same with me. I repeatedly got the 404 Error since 8 hours ago. |
Might as well look at this discussion: |
Use snscrape instead of GOT3 |
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)
The text was updated successfully, but these errors were encountered: