beautifulsoup1 [Python] BeautifulSoup 으로 크롤링하기 table = soup.a # a태그 하나 찾음. table = soup.find('div',{'id' : 'perfect'}) text = table.a.get_text() # table에서 a태그인걸 찾고, 그걸 string으로 변환시킴. 일단 BeautifulSoup를 import하고.. from urllib.request import urlopen from bs4 import BeautifulSoup as bs BeautifulSoup 객체를 만들자. url = "주소" # http://www.naver.com 같은거 html = urlopen(url) source = html.read() html.close() soup = bs(source, "html5lib") # BeautifulSoup 객.. 2019. 11. 10. 이전 1 다음