Last active
December 16, 2015 06:09
-
-
Save marioidival/5388964 to your computer and use it in GitHub Desktop.
Tweets for my love
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
from time import sleep | |
import tweepy | |
consumer_key= "" | |
consumer_secret= "" | |
access_token= "" | |
access_token_secret= "" | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth) | |
cont = 123 | |
while True: | |
tww = "Parabens meu amor! Eu te amo #ParabensParaDara, %s, Retweet e Compartilha! https://www.facebook.com/DarinhaCherry" %(cont) | |
api.update_status(tww) | |
cont += 1 | |
sleep(90) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment