Tweepy将搜索限制为单个用户

时间:2018-11-29 04:46:27

标签: python twitter tweepy

我正在尝试使用tweepy api搜索用户自己的推文,并返回包含用户输入的关键字的推文。因此,如果用户输入“ Blue”作为关键字,它将搜索所有用户推文,并返回所有包含字符串“ Blue”的推文。

到目前为止,这是我的代码,它可以运行,但是它似乎无限地运行各种随机推文。如何将搜索限制为单个用户?

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)

api = tweepy.API(auth)

for status in tweepy.Cursor(api.search, q="Blue", rpp=100, show_user=True).items():
    print status.text

1 个答案:

答案 0 :(得分:1)

在查询中使用from:user添加用户的twitter句柄:

for status in tweepy.Cursor(api.search, q="Blue from:blueperson", rpp=100, show_user=True).items():
    print status.text