Twitter Streaming:在各国的基础上获取推特上的趋势

时间:2015-04-20 18:00:55

标签: python twitter tweepy twitter-streaming-api

我正在使用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

我遇到this问题,但没有答案。

1 个答案:

答案 0 :(得分:1)

您正在使用错误的端点执行此作业,您必须使用this转换为tweepy api.trends_place(woeid)并提供woeid,如本页所述,您也可以从{ {1}}结果。