파이썬 requests json
-
[ Python ] requests 모듈 다양한 이용Python/Python Programming 2023. 5. 25. 11:05
설치 : pip install requests 1. Response Text. (Text 출력) import requests with requests.Session() as s: r = s.get(site) print(r.text) 2. Response Status Code. (응답코드 출력) import requests with requests.Session() as s: r = s.get(site) print(r.status_code) 3. Response Encoding. (Encoding 출력) import requests with requests.Session() as s: r = s.get(site) print(r.encoding) 4. Response Hearders. (Hearders 출력..
-
[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..