Inflearn Community Q&A

[Renewal] Python Introduction and Web Crawling Basics Bootcamp [Python, Web, and Data Understanding Fundamentals] (Updated)
[참고] 크롤링 프로그램 완성: 크롤링한 데이터에서 다시 크롤링하기2
Written on
·
235
0
강의제목 - 크롤링 프로그램 완성: 크롤링한 데이터에서 다시 크롤링하기2
강의시간 4분 40초 부분에 나오는 지마켓 베스트 100의 판매업체 선택자 부분이 조금 바뀌어서 강의에 나온
코드대로 하면 크롤링이 안되요. 아래처럼 바꾸니 제대로 되요.
기존 판매업체 선택자 코드
provider_info = soup_info.select_one("div.item-topinfo > div.item-topinfo_headline > p > a > strong")
새로 바뀐 판매업체 선택자 코드
provider_info = soup_info.select_one("div.item-topinfo_headline span.text__seller > a")
웹-크롤링python




