xTerradon / hcaptcha-solver

Automated hCaptcha solver using binary image classification networks
https://pypi.org/project/hcaptcha-solver/
20 stars 7 forks source link

Language error #25

Open Save1l opened 1 month ago

Save1l commented 1 month ago

Hello, I'm a Russian-speaking user, so I'm writing through a translator, sorry if there are any errors, the problem is that I copied the code that you provided, installed the library, I'm using PyCharm, I ran the code, the problem is that it doesn't solve the first version of the captcha, that's what the code produces : Captcha_Solver is starting in verbose mode by default. To silence messages, pass verbose=False to constructor Initializing model handler... Loaded 10 models Launching hCaptcha... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Click on the images that best match the theme of the sample image. Model for captcha string Click on the images that best match the theme of the sample image. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Select the images most related to the provided sample. Model for captcha string Select the images most related to the provided sample. not found, trying again... Found V1 Captcha [WARNING] The captcha string does not appear to be English. This version of hcaptcha-solver only supports english captchas, consider changing the language of the webhandler Found Captcha task: Click on the images that best match the theme of the sample image. Model for captcha string Click on the images that best match the theme of the sample image. not found, trying again...

I also added a screenshot of the Chrome browser Screenshot_40

Jminding commented 1 month ago

It's not an error, it's a warning, meaning that the code will still run.

Save1l commented 1 month ago

yes but code doesn`t solve captcha, and I have a question, why

Jminding commented 1 month ago

yes but code doesn`t solve captcha, and I have a question, why

That happens for a different reason—I think hcaptchas recently got updated, so the models that are on here are a bit outdated and need to be trained again. I think they used to ask for images that are similar/match an object shown, but now they ask you to click all the images that match the theme, which makes it more difficult for the models to get it right. I'm trying to find another workaround in the meantime.