[파이썬으로 웹 크롤러 만들기 - 라이언 미첼, 한빛미디어] 의 내용을 바탕으로 공부한 내용입니다. 작성한 글의 모든 저작권은 한빛미디어에 있습니다. part1. 크롤링 시작하기 - chapter 3 - 페이지에 들어있는 링크 목록을 가져오기 from urllib.request import urlopen from bs4 import BeautifulSoup html = urlopen('https://en.wikipedia.org/wiki/Kevin_Bacon') bs = BeautifulSoup(html, 'html.parser') for link in bs.findAll('a'): if 'href' in link.attrs: print(link.attrs['href']) html = urlopen('h..