인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

06007sk9946's profile image
06007sk9946

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

How to use BeautifulSoup and simple web parsing practice (1) - Naver, Daum, Inflearn

인프런 강의 크롤링시

Written on

·

202

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

Answer 2

0

niceman님의 프로필 이미지
niceman
Instructor

네 감사합니다.

0

06007sk9946님의 프로필 이미지
06007sk9946
Questioner

recommand = soup.select("div.course_card_item") 하니까 여러개가 출력됩니다. ^^

06007sk9946's profile image
06007sk9946

asked

Ask a question