You need to get all the tweets on a specific topic (for example, containing a link to my resource). For this code is written from the series:
api = tw_oauth('./auth.k') coursor = tweepy.Cursor(api.search, q='site.ru', count = 20) for tweet in coursor.items(): ... (tried to specify the number of tweets of interest in items (20), does not affect the result). (tried to specify since_id equal to the last received tweet, or even older, but also not affected)
However, at the output I get exactly 7 tweets. Questions 2:
- How to get more than 7 tweets at a time?
- How to get tweets older (and not younger) of a certain time or ID? (Judging by the dock since_id allows you to receive YOUNG tweets, the ID of which is MORE specified)