# 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())
[파이썬 웹 스크래핑] Beautifulsoup4 (쿠팡 노트북) - 5 (0) | 2020.09.03 |
---|---|
[파이썬 웹 스크래핑] Beautifulsoup4 (네이버 웹툰) - 4 (0) | 2020.09.02 |
[파이썬 웹 스크래핑] Beautifulsoup4 (네이버 웹툰) - 2 (0) | 2020.08.31 |
[파이썬 웹 스크래핑] Beautifulsoup4 (네이버 웹툰) - 1 (0) | 2020.08.29 |
[파이썬 웹 스크래핑] User Agent (0) | 2020.08.28 |
댓글 영역