웹 스크래퍼5 2. Building a Job Scrapper_1 2.0 What is Web Scrapping Web Scrapping Web상의 데이터를 추출하는 것 2.1 Navigating with Python requests requests : HTTP 요청을 보내는 모듈 request 우분투에서 설치 pip3 install requests requests.get(url) get HTTP 메소드(함수) 요청받은 url의 정보를 검색하여 응답 예시) 네이버에 get 요청 보내기 import requests r=requests.get('https://www.naver.com') print (r) # # 응답코드 200 : OK 위와 같이 requests.get('url') 로 요청 응답 코드 200 : OK (요청이 성공적으로 수행되었음) 응답코드 ref) htt.. 2020. 3. 24. 이전 1 2 다음