【发布时间】:2017-11-13 06:35:19
【问题描述】:
以 Tweepy 搜索为例:
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 搜索运算符(如 since 和 until)针对特定范围进行过滤,但仍然没有产生任何结果
有什么想法吗?
【问题讨论】: