从用户时间轴-Tweepy获取推文时,排除转发和回复

时间:2018-09-26 05:39:10

标签: python twitter tweepy

我使用以下代码通过Tweepy从用户时间轴下载Tweets。但是,这还会返回Tweets,包括用户的Retweets和Replies。我只希望在用户自己的时间轴中发布推文。如何过滤此结果?

原因是我想收集化妆品公司发布的有关其产品的推文。他们时间轴上的推文给了我。但是,“回复和转发”看起来像是常规对话,不谈论产品。我想过滤掉这些。

import tweepy
import csv
import time

# Twitter API credentials
consumer_key = "xxxxxxx"
consumer_secret = "xxxxx"
access_key = "xxxxxxx"
access_secret = "xxxx"

def get_all_tweets(screen_name):
    # Twitter only allows access to a users most recent 3240 tweets with this method

    # authorize twitter, initialize tweepy
    auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
    auth.set_access_token(access_key, access_secret)
    api = tweepy.API(auth)

    # initialize a list to hold all the tweepy Tweets
    alltweets = []

    # make initial request for most recent tweets (200 is the maximum allowed count)
    new_tweets = api.user_timeline(screen_name=screen_name, count=200)

    # save most recent tweets
    alltweets.extend(new_tweets)

    # save the id of the oldest tweet less one
    oldest = alltweets[-1].id - 1

    # keep grabbing tweets until there are no tweets left to grab
    while len(new_tweets) > 0:
        print
        "getting tweets before %s" % (oldest)

        # all subsiquent requests use the max_id param to prevent duplicates
        new_tweets = api.user_timeline(screen_name=screen_name, count=200, max_id=oldest, include_entities=True)

        # save most recent tweets
        alltweets.extend(new_tweets)

        # update the id of the oldest tweet less one
        oldest = alltweets[-1].id - 1

        print
        "...%s tweets downloaded so far" % (len(alltweets))

    user = api.get_user(screen_name)
    followers_count = user.followers_count


    # transform the tweepy tweets into a 2D array that will populate the csv
    outtweets = [[tweet.id_str, tweet.created_at, tweet.text.encode("utf-8"), 1 if 'media' in tweet.entities else 0,
                  1 if tweet.entities.get('hashtags') else 0, followers_count, tweet.retweet_count, tweet.favorite_count]
                 for tweet in alltweets]


    # write the csv
    with open('tweets.csv', mode='a', encoding='utf-8') as f:
        writer = csv.writer(f)
        #writer.writerow(["id", "created_at", "text", "hasMedia", "hasHashtag", "followers_count", "retweet_count", "favourite_count"])
        writer.writerows(outtweets)

    pass

def main():
    get_all_tweets("@MACcosmetics")


if __name__ == '__main__':
    main()

4 个答案:

答案 0 :(得分:1)

您可以将一些搜索参数发送给twitter来过滤响应。

排除:转推排除:回复

因此基本上是“ SearchParams” + exclude:retweets exclude:回复应该起作用

如果您想检出https://developer.twitter.com/en/docs/tweets/rules-and-filtering/overview/standard-operators.html

,则更多

曾经遇到过同样的问题,并且现在已经通过这种方式解决了,我希望它会在将来对某人有所帮助

答案 1 :(得分:0)

很不幸,tweepy没有这个: 但是,您可以使用this

这有一个方法

def GetHomeTimeline(self,
                        count=None,
                        since_id=None,
                        max_id=None,
                        trim_user=False,
                        exclude_replies=False,
                        contributor_details=False,
                        include_entities=True):

并且应该适合您的情况

答案 2 :(得分:0)

我是这样做的,而且有效:

tweepy.Cursor(api.user_timeline, 
                        screen_name=usuario, 
                        count=None,
                        since_id=None,
                        max_id=None,
                        trim_user=True,
                        exclude_replies=True,
                        contributor_details=False,
                        include_entities=False
                        ).items(200);

答案 3 :(得分:0)

tweepy.Cursor(api.user_timeline, screen_name='anyname',include_rts=False)

选项include_rts=False已删除转发。

Reference link.