【发布时间】:2021-05-31 03:36:24
【问题描述】:
我想获取创建日期在 4 月 1 日以上的关注者、朋友和 user_timeline。 这是我现在获取这三个的方式
followers = tweepy.Cursor(self.api.followers, self.user_handle).items(max_limit)
followings = tweepy.Cursor(self.api.friends, self.user_handle).items(max_limit)
user_tweets = tweepy.Cursor(self.api.user_timeline, tweet_mode='extended').items(max_limit)
【问题讨论】:
标签: python tweepy twitterapi-python