[Python] BeautifulSoup를 활용한 웹 크롤링 예제
·
Python
weworkremotely 사이트에서 자동으로 직무를 검색해서 스크랩하는 기능이다. 코드 from requests import get from bs4 import BeautifulSoup def extract_wwr_jobs(keyword): base_url = "https://weworkremotely.com/remote-jobs/search?term=" response = get(f"{base_url}{keyword}") if response.status_code != 200: # Check response 200(OK) print("Can't request website") else: results = [] # for Loop의 job_data가 저장될 곳 soup = BeautifulSoup(re..