Open santoshbs opened 4 years ago
I was able to include only retweets by including c.Native_retweets = True
to that query you ran above. So you might have to run two queries.
Unfortunately the c.Native_retweets = True
returns only partial results. The following code, for example, does not return this tweet -
https://mobile.twitter.com/gsuite/status/1283485436393000963
import twint
c = twint.Config()
c.Username = "google"
c.Search = "#googlemeet"
c.Native_retweets = True
twint.run.Search(c)
It looks like the search does not return retweets containing the term. For example, consider the following code:
It does not return, for example, a retweet - https://mobile.twitter.com/Googleorg/status/1286773736880758784.
Is there any way to not exclude retweets?
Thanks and regards sbs