Cộng đồng Hỏi & Đáp của Inflearn
인프런 강의 크롤링시
Viết
·
234
0
인프런강의 크롤링시 강의 1개만 출력됩니다.
어떤부분이 잘못된건지 조언 부탁드려요
base = "https://www.inflearn.com/"
quote = rep.quote_plus('courses/it-programming', safe='/')
url = base + quote
res = req.urlopen(url).read()
soup = BeautifulSoup(res , 'html.parser')
recommand = soup.select("#courses_section > div > div > div > main > div.courses_container > div ")
print(recommand)
웹-크롤링python
Quiz
52% người trả lời sai. Hãy thử ngay!
크롬 개발자 도구에서 웹사이트의 HTML 태그 및 요소 구조를 분석하는 데 주로 사용되는 패널은 무엇일까요?
Console
Elements
Network
Sources
Câu trả lời 2
0
0





