2017-11-10 127 views
0

例如使用Tweepy搜索:Tweepy搜索没有产生相同的结果,twitter.com搜索

for match in tweepy.Cursor(api.search, q=('from:realdonaldtrump michaelcohen212'), include_entities=True, count=10, wait_on_rate_limit=True).items(): 
    print(match.text) 

产生任何结果,但是当我在这里我搜索得到的结果(虽然他们是从2015年开始):

https://twitter.com/search?f=tweets&q=from%3Arealdonaldtrump%20michaelcohen212&src=typd 

我尝试使用Tweepy搜索运营商如sinceuntil针对特定范围进行过滤,它仍然产生什么

任何想法?

回答