Mastering Crawling Through Practice with Data Workshop
Python Crawling Master. This is all you need, from installation to application. We've packed it with only the essential content you truly need for real-world use.
141 learners
Level Beginner
Course period Unlimited
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




