크롤링 #뷰티풀스프1 파이썬(BeautifulSoup) 원하는 데이터 크롤링 하기 - 인터넷 문서의 구조에서 명확한 데이터를 추출하고 처리하는 가장 쉬운 라이브러리 soup.find() 맨첫번째 태그 하나만 가져옴 soup.find_all() 태그단위로 뽑아오는데 고른 태그와 관련된 모든 태그들을 배열로 가져옴 find() find_all() 이용해서 값 뽑아오기 import requests from bs4 import BeautifulSoup url = 'http://127.0.0.1:8000/emplist' response = requests.get(url) print("response",response.text) html = response.text soup = BeautifulSoup(html, 'html.parser')#html형태로 바꾼다. trs = soup.find_al.. 2023. 7. 7. 이전 1 다음