tweepy转发推文的速度与用户发推文一样快

时间:2017-11-06 11:31:29

标签: python python-2.7 twitter tweepy

制作一个twitter bot whit python 2.7和tweepy api,想要这样做,我的机器人会像用户推特一样快地转发推文。就像@IRetweetTrump一样。我试图编写一些代码,但是不起作用。 这是我的代码

Edit1:代码转发用户,但我如何才能一直运行并转发最新的推文。

for tweet in tweepy.Cursor(api.user_timeline, id=25073877).items():
    try:
        # Add \n escape character to print() to organize tweets
        print('\nTweet by: @' + tweet.user.screen_name)

        # Retweet tweets as they are found
        tweet.retweet()
        print('Retweeted the tweet')


         #Favorite the tweet
         #tweet.favorite()
         #print('Favorited the tweet')


        time.sleep(3600)  # take a sleep for in sec

    except tweepy.TweepError as e:
        print(e.reason)  # if cant Retweet tweets, print the reason

    except StopIteration:
        break

0 个答案:

没有答案