Created
March 4, 2015 05:27
-
-
Save lazybios/ad5f5b14bec63efc67b4 to your computer and use it in GitHub Desktop.
tweet bot proto
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import tweepy | |
import time | |
import sys | |
CONSUMER_KEY = "replace yours" | |
CONSUMER_SECRET = "replace yours" | |
ACCESS_KEY = "replace yours" | |
ACCESS_SCRECT = "replace yours" | |
def main(argv): | |
"""docstring for main""" | |
argfile = str(argv[0]) | |
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET) | |
auth.set_access_token(ACCESS_KEY, ACCESS_SCRECT) | |
api = tweepy.API(auth) | |
with open(argfile, 'r') as fd: | |
for line in fd: | |
print api.update_status(status = line) | |
time.sleep(60) | |
if __name__ == '__main__': | |
main(sys.argv[1:]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment