chromedriver-autoupdater


Namechromedriver-autoupdater JSON
Version 0.6.5 PyPI version JSON
download
home_pagehttps://github.com/shawnCaza/python-chromedriver-autoinstaller
SummaryAutomatically install chromedriver that supports the currently installed version of chrome.
upload_time2023-08-26 07:02:18
maintainer
docs_urlNone
authorShawn Caza
requires_python>=3.6
licenseMIT
keywords chromedriver chrome chromium selenium
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # chromedriver-autoupdater
Automatically download and install [chromedriver](https://chromedriver.chromium.org/) that supports the currently installed version of chrome. This installer supports Linux, MacOS and Windows operating systems.

Forked from [chromedriver-autoinstaller](https://github.com/yeongbin-jo/python-chromedriver-autoinstaller)

## Installation

```bash
pip install chromedriver_autoupdater
```

## Usage
Just type `import chromedriver_autoupdater` in the module you want to use chromedriver.

## Example
```
from selenium import webdriver
import chromedriver_autoupdater


chromedriver_autoupdater.install()  # Check if the current version of chromedriver exists
                                      # and if it doesn't exist, download it automatically,
                                      # then add chromedriver to path

driver = webdriver.Chrome()
driver.get("http://www.python.org")
assert "Python" in driver.title
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shawnCaza/python-chromedriver-autoinstaller",
    "name": "chromedriver-autoupdater",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "chromedriver chrome chromium selenium",
    "author": "Shawn Caza",
    "author_email": "theshawn@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/30/65/0ecbfb8095fd0759af338753bef185163009b5300d450dade860cb56da79/chromedriver-autoupdater-0.6.5.tar.gz",
    "platform": null,
    "description": "# chromedriver-autoupdater\nAutomatically download and install [chromedriver](https://chromedriver.chromium.org/) that supports the currently installed version of chrome. This installer supports Linux, MacOS and Windows operating systems.\n\nForked from [chromedriver-autoinstaller](https://github.com/yeongbin-jo/python-chromedriver-autoinstaller)\n\n## Installation\n\n```bash\npip install chromedriver_autoupdater\n```\n\n## Usage\nJust type `import chromedriver_autoupdater` in the module you want to use chromedriver.\n\n## Example\n```\nfrom selenium import webdriver\nimport chromedriver_autoupdater\n\n\nchromedriver_autoupdater.install()  # Check if the current version of chromedriver exists\n                                      # and if it doesn't exist, download it automatically,\n                                      # then add chromedriver to path\n\ndriver = webdriver.Chrome()\ndriver.get(\"http://www.python.org\")\nassert \"Python\" in driver.title\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Automatically install chromedriver that supports the currently installed version of chrome.",
    "version": "0.6.5",
    "project_urls": {
        "Homepage": "https://github.com/shawnCaza/python-chromedriver-autoinstaller"
    },
    "split_keywords": [
        "chromedriver",
        "chrome",
        "chromium",
        "selenium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30650ecbfb8095fd0759af338753bef185163009b5300d450dade860cb56da79",
                "md5": "ab3ab7d7c85a7d38c367ab79599cfe3a",
                "sha256": "e966268e3d3a85e251278d385e1b7d710080a0201f5e8991303ee8eca6294fb9"
            },
            "downloads": -1,
            "filename": "chromedriver-autoupdater-0.6.5.tar.gz",
            "has_sig": false,
            "md5_digest": "ab3ab7d7c85a7d38c367ab79599cfe3a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 6775,
            "upload_time": "2023-08-26T07:02:18",
            "upload_time_iso_8601": "2023-08-26T07:02:18.867789Z",
            "url": "https://files.pythonhosted.org/packages/30/65/0ecbfb8095fd0759af338753bef185163009b5300d450dade860cb56da79/chromedriver-autoupdater-0.6.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-26 07:02:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shawnCaza",
    "github_project": "python-chromedriver-autoinstaller",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "chromedriver-autoupdater"
}
        
Elapsed time: 0.10584s