Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
.. image:: https://img.shields.io/pypi/v/ta_captcha_solver.svg :target: https://pypi.python.org/pypi/ta_captcha_solver
.. image:: https://img.shields.io/travis/macejiko/ta_captcha_solver.svg :target: https://travis-ci.com/macejiko/ta_captcha_solver
.. image:: https://readthedocs.org/projects/ta-captcha/badge/?version=latest :target: https://ta-captcha.readthedocs.io/en/latest/?version=latest :alt: Documentation Status
|
Thoughtful Captcha Solver
|
::
python3 -m virtualenv venv source venv/bin/activate pip install ta-captcha-solver
|
|
Currently only RPA.Browser.Selenium.Selenium() is supported. In future we will add a Playwright support as well
|
Currently we support these:
You should have valid API key that could be obtained from web version of service after you put some money to the account balance
|
Currently we support these:
|
If param is not required and not set then this action would not be performed and you a responsible for it. E.g. if you dont provide check_xpath then you should check that captcha has been solved by you own.
+----------------------+-------------------+-------+-------------------------------------------------------------------------+ | Param | Required | Type | Description | +======================+===================+=======+=========================================================================+ | captcha_type | Yes | All | One of supported captcha types | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | browser | Yes for 'v2' and | All | Supported browser instance with opened captcha page | | | 'fun_captcha' | | | | | For 'image' only | | | | | when image_source | | | | | is not provided. | | | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | captcha_guru_api_key | No | All | Deprecated. Use 'service_provider_name' + 'service_provider_key' instead| +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | service_provider_name| Yes | All | Value should be: 'captcha.guru' or '2captcha' | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | serivce_provider_key | Yes | All | Valid API key of appropriate Service Provider | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | image_xpath | Yes if | Image | Locator of with captcha pic | | | browser | | | | | is provided | | | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | input_xpath | No | Image | Locator of input field for token | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | click_xpath | No | All | Locator of submit button | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | check_xpath | No | All | Locator that should be verified after solving | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | upper | No | Image | Perform token.upper() | +----------------------+-------------------+-------+-------------------------------------------------------------------------+ | image_source | Yes if browser | Image | Path to .png or .jpg image with captcha to solve | | | not provided | | | +----------------------+-------------------+-------+-------------------------------------------------------------------------+
|
.. code:: python
from RPA.Browser.Selenium import Selenium from ta_captcha_solver.ta_captcha_solver import TACaptchaSolver
browser = Selenium() browser.open_browser("http://url_with_captcha")
captcha = TACaptchaSolver.get( captcha_type="v2", browser=browser, service_provider_name="captcha.guru", service_provider_key="captcha.guru API KEY", ) captcha.solve()
.. code:: python
from RPA.Browser.Selenium import Selenium from ta_captcha_solver.ta_captcha_solver import TACaptchaSolver
browser = Selenium() browser.open_browser("http://url_with_captcha")
captcha = TACaptchaSolver.get( captcha_type="image", browser=browser, service_provider_name="captcha.guru", service_provider_key="captcha.guru API KEY", image_xpath="//img[@id='demoCaptcha_CaptchaImage']", input_xpath="//input[@id='captchaCode']", click_xpath="//input[@id='validateCaptchaButton']", check_xpath="//span[@id='validationResult']/span[@class='correct']", upper=False, ) captcha.solve()
.. code:: python
from RPA.Browser.Selenium import Selenium from ta_captcha_solver.ta_captcha_solver import TACaptchaSolver
browser = Selenium() browser.open_browser("http://url_with_captcha")
captcha = TACaptchaSolver.get( captcha_type="fun_captcha", browser=self.browser, service_provider_name="2captcha", service_provider_key="2captcha API KEY" check_xpath="//input[@id='username']", ) captcha.solve()
.. code:: python
from ta_captcha_solver.ta_captcha_solver import TACaptchaSolver
captcha = TACaptchaSolver.get( captcha_type="image", service_provider_name="2captcha", service_provider_key="2captcha API KEY", image_source= "C:/your-path-to-image-captcha.png", upper=False, ) captcha.solve() token = captcha.token
Prepare local dev env:
::
python3 -m virtualenv venv source venv/bin/activate pip install -r requirements.txt
Testing:
::
CAPTCHA_GURU_API_KEY=XXX TWO_CAPTCHA_API_KEY=YYY pytest
FAQs
Thoughtful Captcha Solver Package
We found that ta-captcha-solver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.