2captcha-python icon indicating copy to clipboard operation
2captcha-python copied to clipboard

Python 3 package for easy integration with the API of 2captcha captcha solving service to bypass recaptcha, hcaptcha, funcaptcha, geetest and solve any other captchas.

Results 18 2captcha-python issues
Sort by recently updated
recently updated
newest added

can you add GeeTest v4 plzzzzzz

When I'm requesting page with requests library I receive this respoce from a server: `{'captcha_key': ['You need to update your app to join this server.'], 'captcha_sitekey': 'a9b5fb07-92ff-493f-86fe-352a2803b3df', 'captcha_service': 'hcaptcha', 'captcha_rqdata':...

Anyone help me? ```py from twocaptcha import TwoCaptcha ```

help wanted

Hello, would it be possible to add an example on how to solve the tiktok captcha with python please? Thank you!

Describe the bug When I launch the Account Creator, here is the issue I get: Starting account creation for: [[email protected]](mailto:[email protected]) Traceback (most recent call last): File "C:\Users\nicod\Desktop\RAIDTOOLBOX\discord-spam-bots-master\discord-spam-bots-master\bots\misc\account-creator\account_creator.py", line 81, in...

Hello there, I am trying to use this library to solve Cloudflare turnstile captcha for one of the sites. But I am getting ERROR BAD PARAMETERS as the error. Here...

I have both installed: twocaptcha and 2captcha-python the code: from twocaptcha import TwoCaptcha ... solver = TwoCaptcha(captchaKey) try: captcha = solver.normal("config/captcha_image.png") logging.info(f"Resultado 2captcha: {captcha}") return captcha except Exception as e:...

Looks like Cloudflare Turnstile does not work now.

``` solver = TwoCaptcha('Hidden) try: login_response = requests.post('https://discord.com/api/v9/auth/login', json=login_payload) captcha_key = solver.hcaptcha( sitekey='f5561ba9-8f1e-40ca-9b5b-Hidden', url='https://discord.com/api/v9/auth/login') login_response.raise_for_status() except requests.exceptions.HTTPError as err: print(f"Login Failed with status code {err.response.status_code}: {err.response.text}") raise ```

Is there any way to turn SSL verification off? we can do `requests.get("http://url", verify=False)` But not work for solver.