[파이썬] json 데이터 출력하기
- Language/Python
- 2020. 11. 13.
#파이썬으로 json 분석하기
import urllib.request as req
import os.path
import json
#json데이터 다운로드하기
url = "https://api.github.com/repositories"
fileName = "rep.json"
if not os.path.exists(url):
req.urlretrieve(url, fileName)
jsonData = open(fileName, "r", encoding="utf-8").read()
data = json.loads(jsonData)
for dat in data:
print(dat["name"] + " - " + dat["owner"]["login"])
반응형
'Language > Python' 카테고리의 다른 글
[Python] 파이썬 설치하기 (0) | 2023.07.13 |
---|---|
[파이썬] YAML 실행하기 (0) | 2020.11.13 |
[파이썬] 네이버 api 빼오기 (0) | 2020.11.12 |
[파이썬] API 사용하기 (0) | 2020.11.12 |
[파이썬] 크롬드라이버를 이용한 셀레니움. (0) | 2020.11.09 |