Skip to content

Instantly share code, notes, and snippets.

@lazybios
Created March 4, 2015 05:27
Show Gist options
  • Save lazybios/ad5f5b14bec63efc67b4 to your computer and use it in GitHub Desktop.
Save lazybios/ad5f5b14bec63efc67b4 to your computer and use it in GitHub Desktop.
tweet bot proto
#!/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