我使用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
为这些国家?
我碰到这个问题,但它并没有回答。