Die Kozue Friday Road Show ist also ein jährliches Bals Festival Ich habe einen Python-Code erstellt, um die Bals zu twittern. Das Limit der Twitter-API beträgt also 180-mal für 15 Minuten Wenn das Programm ausgeführt wird, murmelt es "Bals", solange das Limit erreicht ist. Beim letzten 180. Mal schreit Muska!
Genießen wir Laputa, das Schloss am Himmel!
tweetBalse.py
# coding=utf-8
import time
import tweepy
consumer_key = '****'
consumer_secret = '****'
access_key = '****'
access_secret = '****'
comment = 'Barth'
last_comment = 'Augen, Augen ~~~~~~~~~!!!!!!! '
exclamation = '!'
counter = 179
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
# set access token to OAuth handler
auth.set_access_token(access_key, access_secret)
# create API
api = tweepy.API(auth_handler=auth)
for var in range(counter):
api.update_status(comment)
if len(comment) >= 140:
comment = 'Barth'
comment+=exclamation
print comment
time.sleep(0.1)
api.update_status(last_comment)
print last_comment
Recommended Posts