key = '키값'year = 2018month = '10'apiUrl = 'http://apis.data.go.kr/B090041/openapi/service/SpcdeInfoService/getHoliDeInfo?solYear='+str(year)+'&solMonth='+month+'&ServiceKey='+key req = requests.get(apiUrl)xpars = xmltodict.parse(req.text)jsonDump = json.dumps(xpars)jsonBody = json.loads(jsonDump) print(jsonBody['response']['body']['items']['item'])