{"id":50711019,"url":"https://github.com/pusheandoando/selenium_driverkit","last_synced_at":"2026-06-09T15:04:21.033Z","repository":{"id":356779985,"uuid":"1233054249","full_name":"pusheandoando/selenium_driverkit","owner":"pusheandoando","description":"Automated WebDriver downloader and manager for Selenium, so you can skip the tedious manual setup ;)","archived":false,"fork":false,"pushed_at":"2026-05-09T17:06:53.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"v1.0.1","last_synced_at":"2026-05-09T19:12:56.006Z","etag":null,"topics":["selenium","selenium-python","selenium-webdriver"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pusheandoando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-08T14:42:55.000Z","updated_at":"2026-05-08T14:46:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pusheandoando/selenium_driverkit","commit_stats":null,"previous_names":["pusheandoando/selenium_driverkit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pusheandoando/selenium_driverkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pusheandoando%2Fselenium_driverkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pusheandoando%2Fselenium_driverkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pusheandoando%2Fselenium_driverkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pusheandoando%2Fselenium_driverkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pusheandoando","download_url":"https://codeload.github.com/pusheandoando/selenium_driverkit/tar.gz/refs/heads/v1.0.1","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pusheandoando%2Fselenium_driverkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34112225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":["selenium","selenium-python","selenium-webdriver"],"created_at":"2026-06-09T15:04:19.350Z","updated_at":"2026-06-09T15:04:21.026Z","avatar_url":"https://github.com/pusheandoando.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Selenium DriverKit (selenium_driverkit)\nAutomated WebDriver downloader and manager for Selenium. Handles downloading, caching, and version-matching of browser drivers so you can skip the tedious manual setup.\n\n\n\n\n\n## Supported Browsers\n| Browser | | Status |\n|---|---|---|\n| \u003cimg src=\"assets/icon_chrome.svg\" width=\"28\" height=\"28\"\u003e | Google Chrome | Supported |\n| \u003cimg src=\"assets/icon_chromium.svg\" width=\"28\" height=\"28\"\u003e | Chromium | Supported |\n| \u003cimg src=\"assets/icon_firefox.svg\" width=\"28\" height=\"28\"\u003e | Firefox | Supported |\n\n\n\n\n\n## Supported Platforms\n| Platform | | Status |\n|---|---|---|\n| \u003cimg src=\"assets/os_icon_linux.svg\" width=\"28\" height=\"28\"\u003e | Linux | Supported |\n| \u003cimg src=\"assets/os_icon_windows.svg\" width=\"28\" height=\"28\"\u003e | Windows | Supported |\n| \u003cimg src=\"assets/os_icon_macos.svg\" width=\"28\" height=\"28\"\u003e | MacOS | Supported |\n\n\n\n\n\n## Installation\n```bash\npip3 install --upgrade git+https://github.com/pusheandoando/selenium_driverkit.git\n```\n\n\n\n\n\n## Usage\n```python\nfrom selenium_driverkit import get_driver\n\n# Chrome / Chromium\ndriver_path = get_driver(browser=\"chrome\", platform=\"linux\")\n\n# Firefox\ndriver_path = get_driver(browser=\"firefox\", platform=\"linux\")\n\n# Windows\ndriver_path = get_driver(browser=\"chromium\", platform=\"windows\")\n\n# MacOS\ndriver_path = get_driver(browser=\"firefox\", platform=\"macos\")\n\n# Custom download path\ndriver_path = get_driver(\n    browser = \"chrome\",\n    platform = \"linux\",\n    download_path = \"/custom/path\",\n    auto_update = True\n)\n```\n\n\n\n\n\n### Parameters\n| Parameter | Type | Default | Description |\n|---|---|---|---|\n| `browser` | `str` | required | `\"chrome\"`, `\"chromium\"`, `\"firefox\"` |\n| `platform` | `str` | `\"linux\"` | `\"linux\"`, `\"windows\"`, `\"macos\"` |\n| `download_path` | `str` | `None` | Custom storage path |\n| `auto_update` | `bool` | `True` | Re-download driver when version mismatch is detected |\n\nReturns the absolute path string to the driver binary, or `None` on failure.\n\n\n\n\n\n## Storage\nDrivers are stored under:\n```\n~/.selenium_driverkit/\n    Drivers/\n        Chromium/\n            Linux/\n                Chrome/\n                Chromium/\n            Windows/\n                Chrome/\n                Chromium/\n            MacOS/\n                Chrome/\n                Chromium/\n        Firefox/\n            Linux/\n            Windows/\n            MacOS/\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpusheandoando%2Fselenium_driverkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpusheandoando%2Fselenium_driverkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpusheandoando%2Fselenium_driverkit/lists"}