我正在尝试使用tweepy / python创建一个Twitter机器人以用作过滤器帐户,以转发相关的推文。
我能够搜索包含某个单词/#等的推文,但想知道是否存在代码来启用该帐户(已向其注册应用程序)转推其所关注帐户的所有推文。
请在下面找到附加的代码。
user = api.me()
print(user.name)
def main():
search = ("example1")
numberofTweets = 5
for tweet in tweepy.Cursor(api.search, search).items(numberofTweets):
try:
tweet.retweet()
print("Tweet Retweeted")
except tweepy.TweepError as e:
print(e.reason)
except StopIteration:
break
main()
def main2():
search = ("example2")
numberofTweets = 5
for tweet in tweepy.Cursor(api.search, search).items(numberofTweets):
try:
tweet.retweet()
print("Tweet Retweeted")
except tweepy.TweepError as e:
print(e.reason)
except StopIteration:
break
main2()
while True:
time.sleep(15)
答案 0 :(得分:0)
api.update_status("@" + username + " " + certain_word, in_reply_to_status_id = tweetId)
您可以看看this tutorial。