작성
·
878
0
import requests
from bs4 import BeautifulSoup
print("검색하려는 영어 단어를 입력하세요.")
word = input()
url = "https://en.dict.naver.com/#/search?query=what"
response = requests.get(url)
response.raise_for_status()
soup = BeautifulSoup(response.text, "html.parser")
title = soup.find_all('ul',class_='mean_list')
print(title)
이렇게 네이버 영어사전 크롤링 시도했는데 왜 안될까요ㅣ..
답변