Skip to main content

No project description provided

Project description

케이앤웍스 크롬드라이버 매니저


개발자 : archon.oh (knworks)

크롬드라이버 매니저 사용법

# 인스톨

pip install knw-Chromedriver-manager



# 윈도우 사용자

from knw_Chromedriver_manager import Chromedriver_manager

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service

options = Options()
driver = webdriver.Chrome(service= Service(Chromedriver_manager.install()), options=options)
driver.get("https://www.daum.net/")



# 맥 사용자

from knw_Chromedriver_manager import Chromedriver_manager

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service

options = Options()
options.binary_location = Chromedriver_manager.path_check() # add code
driver = webdriver.Chrome(service=Service(Chromedriver_manager.install()), options=options)
driver.get("https://www.daum.net/")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

knw_Chromedriver_manager-0.1.6.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

knw_Chromedriver_manager-0.1.6-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page