모듈설치%pip install selenium%pip install webdriver-managerselenium으로부터 webdriver 모듈을 불러오기from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicefrom webdriver_manager.chrome import ChromeDriverManager객체 생성 및 요청# http://www.example.com 으로 요청을 보낸다.driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))driver.get("https://www.example.com")driver = webdri..
객체 만들기import requestsfrom bs4 import BeautifulSoupres = requests.get("https://www.example.com")res>> soup = BeautifulSoup(res.text, "html.parser")값 가져오기soup.titlesoup.headsoup.body# 가장 첫 번째 나오는 "h1"태그 찾기soup.find("h1")>> Example Domain# 모든 "h1" 태그를 리스트 형태로 뽑아내기soup.find_all("h1")# 태그 이름 가져오기soup.find("h1").name>> 'h1'# 태그 내용가져오기soup.find("h1").text>> 'Example Domain'Class를 이용해서 값 가져오기# class가 "p..