byerecaptcha


Namebyerecaptcha JSON
Version 1.2.4 PyPI version JSON
download
home_pagehttps://github.com/DedInc/byerecaptcha
SummaryGoogle Recaptcha solver with selenium.
upload_time2023-02-02 05:41:17
maintainer
docs_urlNone
authorMaehdakvan
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">byerecaptcha - Google Recaptcha solver with selenium.</h1>

<h2>Model and some codes takes from <a href="https://github.com/embium/solverecaptchas">embium's repository</a></h2>

<h1 align="center"> -Installation- </h1>

```sh
pip install byerecaptcha
```

<h1 align="center"> -How to use- </h1>

```python
from selenium import webdriver
from selenium_utilities import getChromeDriver
from byerecaptcha import solveRecaptcha

options = webdriver.ChromeOptions()
options.add_argument('--lang=en-US') #need for recaptcha be in english

driver = webdriver.Chrome(executable_path=getChromeDriver(), chrome_options=options)
driver.get('https://www.google.com/recaptcha/api2/demo')
solveRecaptcha(driver) #FOR PREDICTION ON YOUR PC

solveRecaptcha(driver, server="https://myserver.com") #FOR PREDICTION IN YOUR SERVER (check server.py)

solveRecaptcha(driver, invisible=True) #FOR PREDICTION INVISIBLE CAPTCHA
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DedInc/byerecaptcha",
    "name": "byerecaptcha",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Maehdakvan",
    "author_email": "visitanimation@google.com",
    "download_url": "https://files.pythonhosted.org/packages/84/93/6da3223d69080fdac7257757dc647b026786ce36c29c556c26b677541f0c/byerecaptcha-1.2.4.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">byerecaptcha - Google Recaptcha solver with selenium.</h1>\r\n\r\n<h2>Model and some codes takes from <a href=\"https://github.com/embium/solverecaptchas\">embium's repository</a></h2>\r\n\r\n<h1 align=\"center\"> -Installation- </h1>\r\n\r\n```sh\r\npip install byerecaptcha\r\n```\r\n\r\n<h1 align=\"center\"> -How to use- </h1>\r\n\r\n```python\r\nfrom selenium import webdriver\r\nfrom selenium_utilities import getChromeDriver\r\nfrom byerecaptcha import solveRecaptcha\r\n\r\noptions = webdriver.ChromeOptions()\r\noptions.add_argument('--lang=en-US') #need for recaptcha be in english\r\n\r\ndriver = webdriver.Chrome(executable_path=getChromeDriver(), chrome_options=options)\r\ndriver.get('https://www.google.com/recaptcha/api2/demo')\r\nsolveRecaptcha(driver) #FOR PREDICTION ON YOUR PC\r\n\r\nsolveRecaptcha(driver, server=\"https://myserver.com\") #FOR PREDICTION IN YOUR SERVER (check server.py)\r\n\r\nsolveRecaptcha(driver, invisible=True) #FOR PREDICTION INVISIBLE CAPTCHA\r\n```\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Google Recaptcha solver with selenium.",
    "version": "1.2.4",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa3592f506a284defdc15d8def09f2ae5ef2cfc3eb86f61a34ca5624ede5f5b5",
                "md5": "ddf25de413a8b2d9b9e373584171550c",
                "sha256": "a7f683c6ced04b71ec3e76500c9e185eb7a16d232a75cfba6ffa533592ee38f1"
            },
            "downloads": -1,
            "filename": "byerecaptcha-1.2.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ddf25de413a8b2d9b9e373584171550c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 6823,
            "upload_time": "2023-02-02T05:41:15",
            "upload_time_iso_8601": "2023-02-02T05:41:15.716561Z",
            "url": "https://files.pythonhosted.org/packages/fa/35/92f506a284defdc15d8def09f2ae5ef2cfc3eb86f61a34ca5624ede5f5b5/byerecaptcha-1.2.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84936da3223d69080fdac7257757dc647b026786ce36c29c556c26b677541f0c",
                "md5": "d8e06f9c4e46f316fee6b36039b526af",
                "sha256": "9feeda49a81c1abba871688929929475b5bede6102e555870991195def6c5866"
            },
            "downloads": -1,
            "filename": "byerecaptcha-1.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "d8e06f9c4e46f316fee6b36039b526af",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 6281,
            "upload_time": "2023-02-02T05:41:17",
            "upload_time_iso_8601": "2023-02-02T05:41:17.569827Z",
            "url": "https://files.pythonhosted.org/packages/84/93/6da3223d69080fdac7257757dc647b026786ce36c29c556c26b677541f0c/byerecaptcha-1.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-02 05:41:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "DedInc",
    "github_project": "byerecaptcha",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "byerecaptcha"
}
        
Elapsed time: 0.17414s