{"id":13826844,"url":"https://github.com/zaironjacobs/get-chrome-driver","last_synced_at":"2026-05-13T12:00:38.613Z","repository":{"id":57433960,"uuid":"300860272","full_name":"zaironjacobs/get-chrome-driver","owner":"zaironjacobs","description":"A tool to download and install ChromeDriver.","archived":false,"fork":false,"pushed_at":"2025-10-15T07:32:07.000Z","size":4800,"stargazers_count":19,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-15T20:56:50.833Z","etag":null,"topics":["chrome","chromedriver","python","webdriver"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zaironjacobs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-03T11:06:17.000Z","updated_at":"2025-10-15T07:24:26.000Z","dependencies_parsed_at":"2024-01-15T16:35:25.249Z","dependency_job_id":"550a1314-ef04-4b12-8015-d7f20d4d7a94","html_url":"https://github.com/zaironjacobs/get-chrome-driver","commit_stats":{"total_commits":73,"total_committers":2,"mean_commits":36.5,"dds":0.04109589041095896,"last_synced_commit":"8bdf0ea8dd770e1583cdfd2ce467e5b1cd46fce9"},"previous_names":[],"tags_count":55,"template":false,"template_full_name":null,"purl":"pkg:github/zaironjacobs/get-chrome-driver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fget-chrome-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fget-chrome-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fget-chrome-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fget-chrome-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaironjacobs","download_url":"https://codeload.github.com/zaironjacobs/get-chrome-driver/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fget-chrome-driver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32981543,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T11:31:52.688Z","status":"ssl_error","status_checked_at":"2026-05-13T11:31:52.072Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chrome","chromedriver","python","webdriver"],"created_at":"2024-08-04T09:01:45.272Z","updated_at":"2026-05-13T12:00:38.596Z","avatar_url":"https://github.com/zaironjacobs.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# Get ChromeDriver\n\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/get-chrome-driver?color=blue)](https://pypi.python.org/pypi/get-chrome-driver)\n[![PyPI](https://img.shields.io/pypi/v/get-chrome-driver?color=blue)](https://pypi.python.org/pypi/get-chrome-driver)\n[![PyPI - License](https://img.shields.io/pypi/l/get-chrome-driver)](https://pypi.python.org/pypi/get-chrome-driver)\n\n[![tests](https://github.com/zaironjacobs/get-chrome-driver/actions/workflows/test.yml/badge.svg)](https://github.com/zaironjacobs/get-chrome-driver/actions/workflows/test.yml)\n\nA tool to download and install ChromeDriver. Automatically download a ChromeDriver version for the current installed\nChrome version. Or you can choose to download the beta version (if one is currently available), the stable version or\nanother specific version. You can use this tool as a package import or as a command-line application.\n\n## Install\n\nTo install:\n\n```console\npip install get-chrome-driver\n```\n\nTo upgrade:\n\n```console\npip install get-chrome-driver --upgrade\n```\n\n## Usage\n\n#### Install and use ChromeDriver with Selenium\n\n```Python\nimport time\nfrom get_chrome_driver import GetChromeDriver\nfrom selenium import webdriver\n\n# Install the driver:\n# Downloads ChromeDriver for the installed Chrome version on the machine\n# Adds the downloaded ChromeDriver to path\nget_driver = GetChromeDriver()\nget_driver.install()\n\n# Use the installed ChromeDriver with Selenium\ndriver = webdriver.Chrome()\ndriver.get(\"https://google.com\")\ntime.sleep(3)\ndriver.quit()\n```\n\n#### For downloading only\n\n```Python\nfrom get_chrome_driver import GetChromeDriver\n\nget_driver = GetChromeDriver()\n\n# Print the stable version\nprint(get_driver.stable_version())\n\n# Print the stable version download link\nprint(get_driver.stable_version_url())\n\n# Print the download link of a specific version\nprint(get_driver.version_url('84.0.4147.30'))\n\n# Auto download ChromeDriver for the installed Chrome version\n# Optional: use output_path= to specify where to download the driver\n# Optional: use extract=True to extract the file\nget_driver.auto_download(extract=True)\n\n# Download the stable driver version\n# Optional: use output_path= to specify where to download the driver\n# Optional: use extract=True to extract the zip file\nget_driver.download_stable_version(extract=True)\n\n# Download a specific driver version\n# Optional: use output_path= to specify where to download the driver\n# Optional: use extract=True to extract the file\nget_driver.download_version('84.0.4147.30', extract=True)\n```\n\n#### Command-line\n\nPrint the stable version url of all platforms:\n\n```console\nget-chrome-driver --latest-urls\n```\n\nPrint the stable version:\n\n```console\nget-chrome-driver --stable-version\n```\n\nPrint the stable version url:\n\n```console\nget-chrome-driver --stable-url\n```\n\nAuto download ChromeDriver for the current installed Chrome version and extract the file:\n\n```console\nget-chrome-driver --auto-download --extract\n```\n\nDownload the stable version and extract the file:\n\n```console\nget-chrome-driver --download-stable --extract\n```\n\nDownload a specific version and extract the file:\n\n```console\nget-chrome-driver --download-version 84.0.4147.30 --extract\n```\n\n#### The downloaded driver can be found at:\n\n*`\u003ccurrent directory\u003e/\u003cchromedriver\u003e/\u003cversion\u003e/\u003cbin\u003e/\u003cchromedriver\u003e`*\n\n*Note: Beta version related options and functions will only work if one is currently available.*\n\n### Options\n\n```\n--help                      Show help.\n\n--beta-version              Print the beta version.\n\n--stable-version            Print the stable version.\n\n--latest-urls               Print the beta and stable version urls for all platforms.\n\n--version-url               Print the url of a version.\n\n--beta-url                  Print the beta version url.\n\n--stable-url                Print the stable version url.\n\n--auto-download             Download a ChromeDriver version for the installed Chrome Version.\n\n--chromium                  Auto download will look for the installed Chromium version instead of Chrome.\n\n--download-beta             Download the beta version.\n\n--download-stable           Download the stable version.\n\n--download-version          Download a specific version.\n\n--extract                   Extract the compressed driver file.\n\n--driver-filename           Print the driver filename.\n\n--version                   App version.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaironjacobs%2Fget-chrome-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaironjacobs%2Fget-chrome-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaironjacobs%2Fget-chrome-driver/lists"}