From 21d2a4386cae2a539d537cc5a9226a16e7ab236a Mon Sep 17 00:00:00 2001 From: Maksim S Date: Mon, 1 Apr 2024 14:12:12 +0200 Subject: [PATCH] - Added default soft_id=4580 parameter to the __init__ method of the TwoCaptcha class in solver.py (#74) Signed-off-by: Maxim S --- twocaptcha/solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twocaptcha/solver.py b/twocaptcha/solver.py index 8078e5e..d8d7530 100755 --- a/twocaptcha/solver.py +++ b/twocaptcha/solver.py @@ -36,7 +36,7 @@ class TimeoutException(SolverExceptions): class TwoCaptcha(): def __init__(self, apiKey, - softId=None, + softId=4580, callback=None, defaultTimeout=120, recaptchaTimeout=600,