AwsWaf

To import this module:

from python3_capsolver.aws_waf import AwsWaf
class python3_capsolver.aws_waf.AwsWaf(captcha_type: AntiAwsWafTaskTypeEnm | str, websiteURL: str, *args, **kwargs)

The class is used to work with Capsolver AwsWaf methods.

Parameters:
  • api_key – Capsolver API key

  • captcha_type (AntiAwsWafTaskTypeEnm | str) – Captcha type name, like AntiAwsWafTask and etc.

  • websiteURL (str) – Address of a webpage with AwsWaf

Examples

>>> AwsWaf(api_key="CAI-BA9XXXXXXXXXXXXX2702E010",
...          captcha_type='AntiAwsWafTaskProxyLess',
...          websiteURL="https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
...         ).captcha_handler()
CaptchaResponseSer(errorId=0,
                   errorCode=None,
                   errorDescription=None,
                   taskId='73bdcd28-6c77-4414-8....',
                   status=<ResponseStatusEnm.Ready: 'ready'>,
                   solution={'cookie': '44795sds...'}
                  )
>>> AwsWaf(api_key="CAI-BA9XXXXXXXXXXXXX2702E010",
...          captcha_type=AntiAwsWafTaskTypeEnm.AntiAwsWafTaskProxyLess,
...          websiteURL="https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
...         ).captcha_handler()
CaptchaResponseSer(errorId=0,
                   errorCode=None,
                   errorDescription=None,
                   taskId='73bdcd28-6c77-4414-8....',
                   status=<ResponseStatusEnm.Ready: 'ready'>,
                   solution={'cookie': '44795sds...'}
                  )
>>> AwsWaf(api_key="CAI-BA9XXXXXXXXXXXXX2702E010",
...          captcha_type=AntiAwsWafTaskTypeEnm.AntiAwsWafTask,
...          websiteURL="https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
...          proxy="socks5:192.191.100.10:4780:user:pwd",
...          awsKey="some key"
...         ).captcha_handler()
CaptchaResponseSer(errorId=0,
                   errorCode=None,
                   errorDescription=None,
                   taskId="87f149f4-1c....",
                   status=<ResponseStatusEnm.Ready: 'ready'>,
                   solution={'cookie': '44795sds...'}
                  )
>>> await AwsWaf(api_key="CAI-BA9650D2B9C2786B21120D512702E010",
...          captcha_type=AntiAwsWafTaskTypeEnm.AntiAwsWafTaskProxyLess,
...          websiteURL="https://efw47fpad9.execute-api.us-east-1.amazonaws.com/latest",
...         ).aio_captcha_handler()
CaptchaResponseSer(errorId=0,
                   errorCode=None,
                   errorDescription=None,
                   taskId='73bdcd28-6c77-4414-8....',
                   status=<ResponseStatusEnm.Ready: 'ready'>,
                   solution={'cookie': '44795sds...'}
                  )
Returns:

CaptchaResponseSer model with full server response

captcha_handler() CaptchaResponseSer

Sync solving method

Returns:

CaptchaResponseSer model with full service response

Return type:

CaptchaResponseSer

Notes

Check class docstring for more info

async aio_captcha_handler() CaptchaResponseSer

Async method for captcha solving

Returns:

CaptchaResponseSer model with full service response

Return type:

CaptchaResponseSer

Notes

Check class docstring for more info