From ad1e82be0703a637567a91f972cf23c3d84fc2da Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 16 Dec 2024 02:25:27 +0300 Subject: [PATCH] Update base.py --- src/python3_anticaptcha/core/base.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/python3_anticaptcha/core/base.py b/src/python3_anticaptcha/core/base.py index 9c818d9..1fdc08d 100644 --- a/src/python3_anticaptcha/core/base.py +++ b/src/python3_anticaptcha/core/base.py @@ -30,6 +30,14 @@ class CaptchaParams(SIOContextManager, AIOContextManager): self._captcha_handling_instrument = CaptchaHandler() + @classmethod + def captcha_handler(cls): + pass + + @classmethod + def aio_captcha_handler(cls): + pass + class CaptchaHandler: NO_CAPTCHA_ERR = "You did not send any file, local link or URL."