공공데이터 오픈 API로 데이터 분석 [Python 3.x] 샘플코드
·
데이터과학/Python
공공데이터 API 연동을 통해 데이터를 분석하려고 하는데, 시작부터 막혀서 잘 안되는 경우가 있었습니다. 다른거보다 많이 올라와 있는 샘플코드들이 Python 2.x인 경우가 많아서 업데이트가 필요해 보입니다. # Python 2.x 샘플 코드 # from urllib2 import Request, urlopen from urllib import urlencode, quote_plus url = 'http://apis.data.go.kr/B552584/RfidFoodWasteServiceNew/getTotalTimeList' queryParams = '?' + urlencode({ quote_plus('ServiceKey') : '서비스키', quote_plus('type') : 'xml', quote_..