どうも、山田長政です
クリスマスなんでツイッターのくりぼっちツイートにいいねを押すプログラムを
作りました。
#いるもの
python
tweepy
#プログラム
countのとこに押す回数を入れます。
tw.py
import tweepy
from time import sleep
consumer_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxx'
consumer_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
access_token = 'xxxxxxxxxxxxxxxxxx'
access_token_secret = 'xxxxxxxxxxxxxxxxx'
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
for status in api.search(q='くりぼっち', count=10000):
tweet_id = status.id
# 例外処理をする
try:
# いいね実行
api.create_favorite(tweet_id)
print("ok")
except:
print('error')