有人可以告诉我如何跟踪所有发布特定主题标签的用户的代码吗?

最佳答案

我想您可以使用twython并从搜索example开始,您可以根据自己的需要进行修改。

from twython import Twython, TwythonError

# Requires Authentication as of Twitter API v1.1
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
try:
    search_results = twitter.search(q='#python', count=50)
except TwythonError as e:
    print e

for tweet in search_results['statuses']:
    print tweet['user']['screen_name'].encode('utf-8')

08-16 05:36