indeed 웹사이트의 html정보 가져오기 github에 있는 request코드 복사하기 repl.it에서 패키지에 requests라이브러리 검색해서 설치 import requests indeed_result = requests.get("https://www.indeed.com/jobs?q=python&limit=50&radius=25&start=950") print(indeed_result.text) #html코드 가져오기 3. 코드 복붙해서 html정보를 전부 불러옴 페이지 정보(페이지 숫자들)를 불러오기 위해서 screen scrapping라이브버리인 beautifulsoup을 사용 beautifulsoup : html에서 정보를 추출하기에 유용한 라이브러리 4. repl.it 패키지에서 beau..