Tweepy获取推文以回复特定的推文

时间:2016-06-18 12:39:56

标签: python search twitter tweepy

所以我在Tweepy和Twitter数据挖掘方面做了很多工作,我想做的一件事就是能够得到所有回复特定推文的推文。我见过搜索API,但我不知道如何使用它,也不知道如何专门搜索推文以回复特定的推文。有人有主意吗?谢谢大家。

2 个答案:

答案 0 :(得分:1)

我已经创建了一种可行的解决方法。最好的方法是搜索用户的提及,然后通过in_reply_to_id过滤这些提及。

答案 1 :(得分:0)

user_name = "@nameofuser"

replies = tweepy.Cursor(api.search, q='to:{}'.format(user_name),
                                since_id=tweet_id, tweet_mode='extended').items()

while True:
    try:

        reply = replies.next()
        if not hasattr(reply, 'in_reply_to_status_id_str'):
            continue
        if str(reply.in_reply_to_status_id) == tweet_id:
           logging.info("reply of tweet:{}".format(reply.text))

    except tweepy.RateLimitError as e:
        logging.error("Twitter api rate limit reached".format(e))
        time.sleep(60)
        continue

    except tweepy.TweepError as e:
        logging.error("Tweepy error occured:{}".format(e))
        break

    except StopIteration:
        break

    except Exception as e:
        logger.error("Failed while fetching replies {}".format(e))
        break