我正在使用 tweepy 从 Twitter 的流媒体 API 中提取推文。然后我用它来自动回复那个用户。
例如,如果我想从中提取实时推文然后回复唐纳德特朗普,我使用:
import tweepy
from tweepy import Stream
from tweepy.streaming import StreamListener
import json
class StdOutListener(StreamListener):
def on_data(self, data):
clean_data = json.loads(data)
tweetId = clean_data["id"]
tweet = "YOUR MESSAGE HERE"
respondToTweet(tweet, tweetId)
def setUpAuth():
auth = tweepy.OAuthHandler("consumer_token", "consumer_secret")
auth.set_access_token("access_token", "Access_token_secret")
api = tweepy.API(auth)
return api, auth
def followStream():
api, auth = setUpAuth()
listener = StdOutListener()
stream = Stream(auth, listener)
stream.filter(follow=["25073877"], is_async=True)
def respondToTweet(tweet, tweetId):
api, auth = setUpAuth()
api.update_status(tweet, in_reply_to_status_id=tweetId, auto_populate_reply_metadata=True)
if __name__ == "__main__":
followStream()
如果你运行我上面的代码,你会注意到它确实回复了唐纳德特朗普,但也回复了他的推文的所有新回复
我需要添加什么才能从流中排除对他的推文的回复?
在此先感谢您的帮助。
胡子哥哥
相关分类