[파이썬]beautifulsoup를 이용한 사이트 정보  추출
# Script/Python2021. 4. 29. 11:12[파이썬]beautifulsoup를 이용한 사이트 정보 추출

1. beautifulsoup 설치 $ pip install beautifulsoup4 2. beautifulsoup 사용법 import requests from bs4 import BeautifulSoup url = 'https://darksharavim.tistory.com/' response = requests.get(url) if response.status_code == 200: html = response.text soup = BeautifulSoup(html, 'html.parser') print(soup) else: print(response.status_code) 상태값이 200인 경우만 출력 C:\Users\kajin7-ryzen3\PycharmProjects\darksharavim\v..

[파이썬]셀레니움 설치
카테고리 없음2021. 4. 29. 11:07[파이썬]셀레니움 설치

1. browser driver 및 browser버전 확인 2. chrome 드라이버 설치 chromedriver.chromium.org/downloads ChromeDriver - WebDriver for Chrome - Downloads Current Releases If you are using Chrome version 91, please download ChromeDriver 91.0.4472.19 If you are using Chrome version 90, please download ChromeDriver 90.0.4430.24 If you are using Chrome version 89, please download ChromeDriver 89.0.4389.23 If yo chrome..

image