강의

멘토링

커뮤니티

Inflearn Community Q&A

caforts5664's profile image
caforts5664

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

인프런 사이트 크롤링 결과

Written on

·

219

0

인프런 사이트를 크럴링했는데, 결과값이 전체 html을 긁어오지 않는 것으로 확인되고 있습니다.

beautifulsoup의 최대길이값이 초과가 된 결과인걸까요?

soup = BeautifulSoup(res.text, 'html.parser')
    print(soup)
소스는 간단하게 위와 같이 처리만 한 상태입니다.

웹-크롤링python

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

안녕하세요.

혹시 나중 챕터에서 배울 selenium을 사용해서 크롤링 하시면 

작동하실 것으로 생각됩니다.

저도 테스트 해본 후 변화가 있다면, 공지로 바로 올려드리도록 하겠습니다.

caforts5664's profile image
caforts5664

asked

Ask a question