Twitter的数据流:在Twitter上获得国家的趋势的基础上,(Twitter Streamin

2019-10-22 18:31发布

我使用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为这些国家?

我碰到这个问题,但它并没有回答。

Answer 1:

您使用了错误的端点这份工作,你必须使用这个翻译为tweepy api.trends_place(woeid)并提供woeid在这个页面,你可以从还可以获得描述api.trends_available()的结果。



文章来源: Twitter Streaming: Get trends on Twitter on the basis of countries