使用ID列表仅检索推文元数据,不检索推文文本

时间:2019-01-22 11:52:10

标签: python-3.x twitter metadata tweepy

上下文:我有一个推特ID及其文本内容的列表,我需要抓取它们的元数据。但是,我的代码也抓取了推文元数据和文本。由于我有大约10万个推文ID,所以我不想浪费时间再次抓取推文文本。

问题:如何修改以下代码,以便仅下载tweet元数据。我正在使用tweepy和python 3.6。

def get_tweets_single(twapi, idfilepath):
    #tweet_id = '522778758168580098'
    tw_list = []
    with open(idfilepath,'r') as f1:#A File that Contains tweet IDS
        lines = f1.readlines()
        for line in lines:
            try:
                print(line.rstrip('\n'))
                tweet = twapi.get_status(line.rstrip('\n'))#tweepy function to crawl tweet metadata
                tw_list.append(tweet)
                #tweet = twapi.statuses_lookup(id_=tweet_id,include_entities=True, trim_user=True)
                with open(idjsonFile,'a',encoding='utf-8')as f2:
                    json.dump(tweet._json,f2)
            except tweepy.TweepError as te:
                print('Failed to get tweet ID %s: %s', tweet_id, te.message)

def main(args):
    print('hello')
# connect to twitter
    auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
    auth.set_access_token(OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
    api = tweepy.API(auth)
    get_tweets_single(api, idfilepath)

1 个答案:

答案 0 :(得分:0)

您不能下载有关该推文的元数据。

看看the documentation,您可以选择使用trim_user=true排除有关用户的信息-但这是您唯一可以删除的信息。