driver 기본 다운로드 경로 지정 profile = {'savefile.default_directory': os.getcwd(), 'download.default_directory': os.getcwd()} chrome_options = webdriver.ChromeOptions() chrome_options.add_experimental_option('prefs', profile) Python-Library/Python-Library__Selenium 2021.01.02
beautifulsoup 특정 태그 안의 속성값 가져오기 아는 동생이 물어봐서 .. title의 속성값 가져오기! from bs4 import BeautifulSoup text = '' soup = BeautifulSoup(text, 'html.parser') tag = soup.select('img')[0]['btn-title'] print(tag) Python-Library/Python-Library__BeautifulSoup 2020.02.02
beautifulsoup req html 소스 req.text header req.headers status req.status_code http 확인 req.ok Python-Library/Python-Library__BeautifulSoup 2018.12.24
selector test = soup.select('div.tit3 > a[href*=movie]') div id가 tit3이면서 href에 movie가 포함된 애들만 가져오기 Python-Library/Python-Library__BeautifulSoup 2018.12.24