Pythonで2次元配列から特定の項目を取り出す方法についてお聞きしたいです。
添付コードの出力結果の中から'Symbol'の値を取得したいと考えています。
pprint.pprint(content['Symbol'])でcontent = json.loads(e.read())の中からSymbolの値を取得出来ると思ったのですが、
取得することが出来ず困っています、、、
色々調べてみたのですが、分からず解決策をご教授していただけないでしょうか?
import urllib.request import json import pprint url = 'http://localhost:18080/kabusapi/ranking' #?type=1&ExchangeDivision=ALL params = { 'type': 1 } #type - 1:値上がり率(デフォルト)2:値下がり率 3:売買高上位 4:売買代金 5:TICK回数 6:売買高急増 7:売買代金急増 8:信用売残増 9:信用売残減 10:信用買残増 11:信用買残減 12:信用高倍率 13:信用低倍率 14:業種別値上がり率 15:業種別値下がり率 params['ExchangeDivision'] = 'T' #ExchangeDivision - ALL:全市場(デフォルト)T:東証全体 T1:東証一部 T2:東証二部 TM:マザーズ JQ:JASDAQ M:名証 FK:福証 S:札証 req = urllib.request.Request('{}?{}'.format(url, urllib.parse.urlencode(params)), method='GET') req.add_header('Content-Type', 'application/json') req.add_header('X-API-KEY', 'xxxxxxx') try: with urllib.request.urlopen(req) as res: print(res.status, res.reason) for header in res.getheaders(): print(header) print() content = json.loads(res.read()) pprint.pprint(content) pprint.pprint(content['Symbol']) except urllib.error.HTTPError as e: print(e) content = json.loads(e.read()) pprint.pprint(content) #pprint.pprint(content['Symbol']) except Exception as e: print(e) ///////出力結果(一部割愛)/////// ('Content-Length', '14918') ('Content-Type', 'application/json; charset=utf-8') ('Server', 'Microsoft-HTTPAPI/2.0') ('X-Content-Type-Options', 'nosniff') ('X-XSS-Protection', '1; mode=block') ('X-Frame-Options', 'DENY') ('Content-Security-Policy', "default-src 'none'") ('Access-Control-Allow-Origin', '*') ('Date', 'Fri, 29 Jan 2021 06:37:30 GMT') ('Connection', 'close') {'ExchangeDivision': 'T', 'Ranking': [{'AverageRanking': 999.0, 'CategoryName': '電気機器', 'ChangePercentage': 29.61, 'ChangeRatio': 300.0, 'CurrentPrice': 1313.0, 'CurrentPriceTime': '15:00', 'ExchangeName': '東証JQS', 'No': 1, 'Symbol': '6907', 'SymbolName': 'ジオマテック', 'TradingVolume': 6145.4, 'Trend': '1', 'Turnover': 7566.7186}, {'AverageRanking': 999.0, 'CategoryName': 'サービス業', 'ChangePercentage': 21.84, 'ChangeRatio': 256.0, 'CurrentPrice': 1428.0, 'CurrentPriceTime': '15:00', 'ExchangeName': '東証マザーズ', 'No': 2, 'Symbol': '6531', 'SymbolName': 'リファインバス', 'TradingVolume': 1054.7, 'Trend': '1', 'Turnover': 1448.7355}], 'Type': '1'} 'Symbol'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/29 08:45