Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
🔴 netkeiba_scrape_arguments_retreiver.pyのjson指定変更とjson更新
Browse files Browse the repository at this point in the history
  • Loading branch information
REDpapa committed May 6, 2021
1 parent 8dd7a6a commit 2866ec3
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions netkeiba_scrape_arguments_retreiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
from oauth2client.service_account import ServiceAccountCredentials
from gspread_dataframe import set_with_dataframe

# User modules.
import consts

#競馬場別で振分けされているコードの辞書を作成。
racecourse_code_dict = {
'札幌':'01',
Expand All @@ -35,11 +38,13 @@
scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']

#認証情報設定
#ダウンロードしたjsonファイル名をクレデンシャル変数に設定(秘密鍵、Pythonファイルから読み込みしやすい位置に置く)
credentials = ServiceAccountCredentials.from_json_keyfile_name(
'g1-point-7e93bd98712c.json',
scope
)
# NOTE: もともとは from_json_keyfile_name で json ファイルから credentials を作っていました。
# しかし秘密鍵である json ファイルを repository に含めると、 GitHub で公開できません!
# なので from_json_keyfile_dict に変更して、 json ファイルがなくても動くようにしました。
credentials = ServiceAccountCredentials.from_json_keyfile_dict(
consts.GSPREAD_CREDENTIAL_JSON,
scope,
)

#OAuth2の資格情報を使用してGoogle APIにログインします。
gc = gspread.authorize(credentials)
Expand Down

0 comments on commit 2866ec3

Please sign in to comment.