Last active
April 19, 2019 04:17
-
-
Save XakazukinX/16f2250bdcc9143e375426f9b1f5e3d1 to your computer and use it in GitHub Desktop.
本田と指定回数じゃんけんするやつ。
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
import datetime | |
from requests_oauthlib import OAuth1Session | |
url = "https://api.twitter.com/1.1/statuses/update.json" | |
text = "\ #本田とじゃんけん / 私は、#本田にチョキで勝つ ✌ 1日1回 @pepsi_jpn をフォローしてじゃんけんに挑戦! 勝てば、その場で #ペプシ #ジャパンコーラ コンビニの無料引換えクーポンもらえる!計16万名様! 【4/19まで #毎日挑戦】 http://bit.ly/2IcJudY " | |
print ('CONSUMER_KEYを入力してください。') | |
input_ck = input('>>> ') | |
CK = input_ck | |
print ('CONSUMER_SECRETを入力してください。') | |
input_cs = input('>>> ') | |
CS = input_cs | |
print ('ACCESS_TOKENを入力してください。') | |
input_at = input('>>> ') | |
AT = input_at | |
print ('ACCESS_TOKEN_SECRETを入力してください。') | |
input_ats = input('>>> ') | |
ATS = input_ats | |
print ('本田とじゃんけんする回数を入力してください。') | |
input_count = input('>>> ') | |
#認証処理 | |
twitter = OAuth1Session(CK, CS, AT, ATS) | |
for num in range(int(input_count)): | |
params = {"status" : text+str(datetime.datetime.today())} | |
res = twitter.post(url, params = params) | |
print("俺の勝ち(^v^)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://qiita.com/bakira/items/00743d10ec42993f85eb
ここを参考にしてます。
使用ライブラリ
・requests
・requests-oauthlib