我是新来的,遇到了一个问题。我想下载带有特殊标签的tweets但看起来

stream.filter(track = ['word1', 'word2', 'word3'])

在tweet中查找这些单词,而不是在tweet的标签中查找。如何筛选标签?

最佳答案

在status对象中找到标记。在那里,你必须与你正在寻找的人作比较。
例子:

for hashtag in status.entities['hashtags']:
    print(hashtag['text'])

示例如下:http://www.pythoncentral.io/introduction-to-tweepy-twitter-for-python/

09-04 23:20