강의

멘토링

커뮤니티

Data Science

/

Data Analysis

Master crawling by following along with Data Workshop

Python Crawling Master. This one is all you need for everything from installation to application. I've packed in only the essential content for real use.

(4.7) 6 reviews

140 learners

Level Beginner

Course period Unlimited

  • datago0ba0
Python
Python
Web Crawling
Web Crawling
Big Data
Big Data
Python
Python
Web Crawling
Web Crawling
Big Data
Big Data

Change Netflix section title crawling code


updated 2021.09.30

Due to the Netflix site redesign, tags in section titles have changed.

Accordingly, the crawling code also needs to be changed.

 

[Before change]

section_title = section.select('h1')[0].text

[After change]

section_title = section.select(' h2' )[0].text

 

※ The site is constantly changing, so rather than the code itself,

It's better to learn the approach I'll explain as I go along and how to use the BeautifulSoup select( ) command.

(Many people have already found it and done it themselves ^^)

 

 

 

※ Section title part tag image

 

 

 

 

 

 

 

 

 

 

Comment