chromedriver-autoinstaller-fix


Namechromedriver-autoinstaller-fix JSON
Version 1.0.6 PyPI version JSON
download
home_pagehttps://github.com/omkarcloud/chromedriver-autoinstaller-fix
SummaryAutomatically install chromedriver that supports the currently installed version of chrome.
upload_time2024-03-02 12:28:11
maintainer
docs_urlNone
authorChetan Jain
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-autoinstaller-fix

For the [botasaurus](https://github.com/omkarcloud/botasaurus) project, we utilize a modified version of [python-chromedriver-autoinstaller](https://github.com/yeongbin-jo/python-chromedriver-autoinstaller) that includes a few bug fixes:

- Correction of an `urllib3` error.
- Improvement in Chromedriver version detection for Windows.

## Installation

```bash
pip install chromedriver-autoinstaller-fix
```

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

## Example
```
from selenium import webdriver
import chromedriver_autoinstaller_fix


chromedriver_autoinstaller_fix.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
```

## Would appreciate a Star :)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/omkarcloud/chromedriver-autoinstaller-fix",
    "name": "chromedriver-autoinstaller-fix",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "chromedriver chrome chromium selenium",
    "author": "Chetan Jain",
    "author_email": "chetan@omkar.cloud",
    "download_url": "https://files.pythonhosted.org/packages/48/e1/480fb5f88aa1c238233eeefbb546f3b1a4720180db521558dc3df96f7288/chromedriver-autoinstaller-fix-1.0.6.tar.gz",
    "platform": null,
    "description": "# chromedriver-autoinstaller-fix\r\n\r\nFor the [botasaurus](https://github.com/omkarcloud/botasaurus) project, we utilize a modified version of [python-chromedriver-autoinstaller](https://github.com/yeongbin-jo/python-chromedriver-autoinstaller) that includes a few bug fixes:\r\n\r\n- Correction of an `urllib3` error.\r\n- Improvement in Chromedriver version detection for Windows.\r\n\r\n## Installation\r\n\r\n```bash\r\npip install chromedriver-autoinstaller-fix\r\n```\r\n\r\n## Usage\r\nJust type `import chromedriver_autoinstaller_fix` in the module you want to use chromedriver.\r\n\r\n## Example\r\n```\r\nfrom selenium import webdriver\r\nimport chromedriver_autoinstaller_fix\r\n\r\n\r\nchromedriver_autoinstaller_fix.install()  # Check if the current version of chromedriver exists\r\n                                      # and if it doesn't exist, download it automatically,\r\n                                      # then add chromedriver to path\r\n\r\ndriver = webdriver.Chrome()\r\ndriver.get(\"http://www.python.org\")\r\nassert \"Python\" in driver.title\r\n```\r\n\r\n## Would appreciate a Star :)\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Automatically install chromedriver that supports the currently installed version of chrome.",
    "version": "1.0.6",
    "project_urls": {
        "Homepage": "https://github.com/omkarcloud/chromedriver-autoinstaller-fix"
    },
    "split_keywords": [
        "chromedriver",
        "chrome",
        "chromium",
        "selenium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48e1480fb5f88aa1c238233eeefbb546f3b1a4720180db521558dc3df96f7288",
                "md5": "7d90c60d72d7a0e6a148914e092c2b14",
                "sha256": "99ac85c47abab0a3c0a47c82a3b9fd1aa69092ee87c05d6fe94673cbc3c5b812"
            },
            "downloads": -1,
            "filename": "chromedriver-autoinstaller-fix-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "7d90c60d72d7a0e6a148914e092c2b14",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 7340,
            "upload_time": "2024-03-02T12:28:11",
            "upload_time_iso_8601": "2024-03-02T12:28:11.046905Z",
            "url": "https://files.pythonhosted.org/packages/48/e1/480fb5f88aa1c238233eeefbb546f3b1a4720180db521558dc3df96f7288/chromedriver-autoinstaller-fix-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-02 12:28:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "omkarcloud",
    "github_project": "chromedriver-autoinstaller-fix",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "chromedriver-autoinstaller-fix"
}
        
Elapsed time: 0.19707s