Now you can createcredentials.py file and paste your credentials from Twitter API site.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
consumer_key = 'your_consumer_key' | |
consumer_secret = 'your_consumer_secret' | |
access_token = 'your_access_token' | |
access_token_secret = 'your_access_token_secret' |
Now we can start working on the script.I've added a
try ... except
block to our code, and have the console print out the reason for the error.This will help to avoid duplicated tweets and keep programme running if we will find errors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tweepy | |
from time import sleep | |
from credentials import * | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth) | |
user_profile = api.user_timeline(screen_name = 'NAME', count = 1, include_rts = False) | |
def tweet(): | |
for status in user_profile: | |
try: | |
api.retweet(status.id) | |
except tweepy.TweepError as e: | |
print(e.reason) | |
tweet() |
One more thing we should add is sleep() to ensure that these tweets don’t all go out at once. The function sleep() works with the time unit measure of seconds, so if we want an hour between tweets, we should write the function as sleep(3600) because there are 3,600 seconds in an hour.
No comments:
Post a Comment