Last active
March 6, 2021 10:20
-
-
Save momota10s/4a1a9d4afe1bdc257ad7c982b17aa38d to your computer and use it in GitHub Desktop.
全銀データを取得するpythonコード
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 | |
import os | |
import pandas as pd | |
import pytz | |
ZENGIN_JSON_PATH = "https://raw.githubusercontent.com/zengin-code/source-data/master/data/banks.json" | |
zengin = pd.read_json(ZENGIN_JSON_PATH) | |
zengin = zengin.T[["code", "name", "hira", "kana", "roma"]] | |
zengin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment