ReCaptcha¶
To import this module:
from python3_capsolver.recaptcha import ReCaptcha
- class python3_capsolver.recaptcha.ReCaptcha(api_key: str, captcha_type: CaptchaTypeEnm | str, **kwargs)¶
- The class is used to work with Capsolver ReCaptcha captcha solving methods:
ReCaptchaV2Classification
ReCaptchaV2Task
ReCaptchaV2EnterpriseTask
ReCaptchaV2TaskProxyLess
ReCaptchaV2EnterpriseTaskProxyLess
ReCaptchaV3Task
ReCaptchaV3EnterpriseTask
ReCaptchaV3TaskProxyLess
ReCaptchaV3EnterpriseTaskProxyLess
- Parameters:
api_key (str) – Capsolver API key
captcha_type (CaptchaTypeEnm | str) – Captcha type name, like
ReCaptchaV2Task
and etc.kwargs –
additional params for client, like captcha waiting time available keys:
sleep_time: int - captcha solution waintig time in sec
- request_url: str - API address for sending requests,
else official will be used
Examples
>>> from python3_capsolver.recaptcha import ReCaptcha >>> from python3_capsolver.core.enum import CaptchaTypeEnm >>> from python3_capsolver.core.captcha_instrument import FileInstrument >>> body = FileInstrument().file_processing(captcha_file="captcha_example.jpeg") >>> ReCaptcha(api_key="CAI-12345....", ... captcha_type=CaptchaTypeEnm.ReCaptchaV2Classification) ... .captcha_handler(task_payload={"image": body, "question": "/m/04_sv"}) { "errorId":0, "errorCode":"None", "errorDescription":"None", "taskId":"db0a3153-621d-4f5e-8554-a1c032597ee7", "status":"ready", "solution":{ "confidence":0.9585, "text":"gcphjd" } }
>>> import asyncio >>> from python3_capsolver.recaptcha import ReCaptcha >>> from python3_capsolver.core.captcha_instrument import FileInstrument >>> body = FileInstrument().file_processing(captcha_file="captcha_example.jpeg") >>> asyncio.run(ReCaptcha(api_key="CAI-12345....").aio_captcha_handler( ... task_payload={"image": body, "question": "/m/04_sv"} ... ) ... ) { "errorId":0, "errorCode":"None", "errorDescription":"None", "taskId":"db0a3153-621d-4f5e-8554-a1c032597ee7", "status":"ready", "solution":{ "confidence":0.9585, "text":"gcphjd" } }
Notes
https://docs.capsolver.com/en/guide/recognition/ReCaptchaClassification/
- async aio_captcha_handler(task_payload: Dict) Dict[str, Any] ¶
Asynchronous method for captcha solving
- Parameters:
task_payload (Dict) – Some additional parameters that will be used in creating the task and will be passed to the payload under
task
key. LikewebsiteURL
,image
,proxyPassword
,websiteKey
and etc. more info in service docs- Returns:
Dict with full server response
- Return type:
Dict[str, Any]
Notes
Check class docstirng for more info
- captcha_handler(task_payload: Dict) Dict[str, Any] ¶
Synchronous method for captcha solving
- Parameters:
task_payload (Dict) – Some additional parameters that will be used in creating the task and will be passed to the payload under
task
key. LikewebsiteURL
,image
,proxyPassword
,websiteKey
and etc. more info in service docs- Returns:
Dict with full server response
- Return type:
Dict[str, Any]
Notes
Check class docstirng for more info