상세 컨텐츠

본문 제목

[파이썬 웹 스크래핑] Beautifulsoup4 (네이버 웹툰) - 3

프로그래밍 언어/웹 스크래핑

by 별을 보는 사람 2020. 9. 1. 07:00

본문

반응형

 

# beautifulsoup4 설치 : pip install beautifulsoup4
# lxml 설치 : pip install lxml

import requests
from bs4 import BeautifulSoup

url = "https://comic.naver.com/webtoon/weekday.nhn"
res = requests.get(url)
res.raise_for_status()

soup = BeautifulSoup(res.text, "lxml")

# 네이버 웹툰 전체 목록 가져오기
cartoons = soup.find_all("a", attrs={"class":"title"})
# a element 의 class 속성이 title 인 모든 element 를 반환
for cartoon in cartoons:
    print(cartoon.get_text())
반응형

관련글 더보기

댓글 영역