推特流媒体:根据国家/地区在推特上获取趋势



我正在使用tweepy来获取Twitter推文。我想根据我选择的国家/地区获取当前趋势。我的代码如下:

import tweepy
file = open("data.txt", 'r')
authentication = tweepy.OAuthHandler('consumer_key', 'consumer_secret')
authentication.set_access_token('access_token', 'access_secret')
api = tweepy.API(authentication)
trends = api.trends_available()
for trend in trends:
    print trend

上面的代码给了我一个国家列表。我想使用该列表来检查该国的当前趋势。如何提取这些国家/地区的趋势hashtags

我遇到了这个问题,但它没有答案。

您为此

作业使用了错误的端点,则必须使用它,它转换为tweepy api.trends_place(woeid)并提供本页中所述的woeid,您也可以从api.trends_available()结果中获得。

相关内容

  • 没有找到相关文章

最新更新