[프로젝트] Web Scraper 만들어서 일자리 구하기 : 1일차
·
Project/일자리 스크래핑 서비스
import requestsfrom bs4 import BeautifulSoup url='https://weworkremotely.com/categories/remote-full-stack-programming-jobs' response=requests.get(url)soup=BeautifulSoup(response.content,'html.parser') jobs=soup.find('section',class_='jobs').find_all('li')[1:-1] all_jobs=[]for job in jobs: title=job.find('span', class_='title') companies=job.find_all(..