2017-11-10 125 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針對特定範圍進行過濾,它仍然產生什麼

任何想法?

回答