Skip to content

Instantly share code, notes, and snippets.

@PiotrKrosniak
Last active February 18, 2018 15:06
Show Gist options
  • Save PiotrKrosniak/c0f0e11069eb8fc29c67f15c817215bb to your computer and use it in GitHub Desktop.
Save PiotrKrosniak/c0f0e11069eb8fc29c67f15c817215bb to your computer and use it in GitHub Desktop.
# Import Tweepy, sleep, credentials.py
import tweepy
from time import sleep
from credentials import *
# Access and authorize our Twitter credentials from credentials.py
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
for tweet in tweepy.Cursor(api.search, q=('#ONE OR #TWO OR #THREE'), lang='en').items(6):
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')
sleep(5)
except tweepy.TweepError as e:
print(e.reason)
except StopIteration:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment