{"id":16803123,"url":"https://github.com/ultrafunkamsterdam/stealthchromedriver","last_synced_at":"2026-04-19T19:04:42.795Z","repository":{"id":106895968,"uuid":"200908322","full_name":"ultrafunkamsterdam/stealthchromedriver","owner":"ultrafunkamsterdam","description":"Optimized Selenium Chrome webdriver replacement which PASSES browser automation tests like Distill Network","archived":false,"fork":false,"pushed_at":"2019-12-22T13:51:10.000Z","size":51,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T06:23:33.820Z","etag":null,"topics":["automation","browser","chrome","chromedriver","detection","distill","headless","js","python","scrape","scraping","selenium","web"],"latest_commit_sha":null,"homepage":null,"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/ultrafunkamsterdam.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":"2019-08-06T19:00:11.000Z","updated_at":"2025-02-24T20:59:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"c895405d-c951-4c7a-bd51-43c9c24baa84","html_url":"https://github.com/ultrafunkamsterdam/stealthchromedriver","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ultrafunkamsterdam/stealthchromedriver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultrafunkamsterdam%2Fstealthchromedriver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultrafunkamsterdam%2Fstealthchromedriver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultrafunkamsterdam%2Fstealthchromedriver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultrafunkamsterdam%2Fstealthchromedriver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ultrafunkamsterdam","download_url":"https://codeload.github.com/ultrafunkamsterdam/stealthchromedriver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ultrafunkamsterdam%2Fstealthchromedriver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32018765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["automation","browser","chrome","chromedriver","detection","distill","headless","js","python","scrape","scraping","selenium","web"],"created_at":"2024-10-13T09:41:37.171Z","updated_at":"2026-04-19T19:04:42.775Z","avatar_url":"https://github.com/ultrafunkamsterdam.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n\r\n# DON'T USE THIS REPO, PLEASE USE MY undetected-chromedriver project #\r\n (https://github.com/ultrafunkamsterdam/undetected-chromedriver)\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n.\r\n# STEALTHCHROMEDRIVER\r\n### Selenium Chromedriver which PASSES Distil browser automation test\r\n\r\n\r\nThis is a drop-in replacement for selenium.webdriver.Chrome using optimization and older build of Chromium to bypass all current browser-automation-detection systems, with the most important one being Distill Networks.\r\n\r\n### Installation\r\n```shell\r\npip install git+https://github.com/ultrafunkamsterdam/stealthchromedriver.git\r\n```\r\n\r\n### Usage\r\n```python\r\n\r\nfrom stealthchromedriver import Chrome\r\n\r\ndriver = Chrome()\r\ndriver.get('https://www.distilnetworks.com')\r\n# now try this using regular selenium chromedriver\r\n```\r\n\r\n\r\n**with options**\r\n```python\r\n\r\nfrom stealthchromedriver import getDriver\r\ndriver = getDriver(headless=False,verify_ssl=False, custom_ua=\"\",profile_directory=\"Default\",prefs=None,language=\"en\")\r\ndriver.get('https://distillnetworks.com')\r\n\r\n# now try this using regular selenium chromedriver\r\n```\r\n\r\n\r\n**with custom options**\r\n```python\r\n\r\nfrom stealthchromedriver import Chrome, ChromeOptions\r\n\r\noptions = ChromeOptions()\r\noptions.add_argument('--proxy-server=socks5://127.0.0.1:9050')\r\noptions.add_argument('--non-secure')\r\n\r\ndriver = Chrome(options=options)\r\ndriver.get('https://distillnetworks.com')\r\n\r\n# now try this using regular selenium chromedriver\r\n```\r\n\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultrafunkamsterdam%2Fstealthchromedriver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fultrafunkamsterdam%2Fstealthchromedriver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultrafunkamsterdam%2Fstealthchromedriver/lists"}