GetOldTweets3
GetOldTweets3 copied to clipboard
[Question] How can I obtain the tweets corresponding to a hashtag? And, the replies to those tweets.
Let us say that the hashtag is @JBHiFi
tweetCriteria = got.manager.TweetCriteria().setQuerySearch('JBHiFi')\ .setSince("2020-01-01")\ .setUntil("2020-05-01")\ .setMaxTweets(1000)
This gets me the tweets sent to JBHifi, but I also need the replies. Can you please help?