json
-
[Python] 파이썬 requests 모듈로 json 처리하기Python/Python Programming 2018. 5. 5. 17:33
JSON은 자바스크립트에서 데이터 객체를 표한하는 방법 간결하고, 가벼워서 데이터 전송에 많이 쓰인다. 파이썬(python)으로 JSON 데이터를 받아서 사전(Dict) 형태로 변형해서 사용할 수 있다. 파이썬 requests 모듈을 이용하여 json 데이터형식 처리하기 json Testing Site : https://jsonplaceholder.typicode.com/users JSONPlaceholder - Fake online REST API for developers Intro JSONPlaceholder is a free online REST API that you can use whenever you need some fake data. It's great for tutorials, test..