NoahCardoza / CaptchaHarvester

Solve captchas yourself without having to pay for services like 2captcha for use in automated projects.
https://pypi.org/project/captcha-harvester/
MIT License
655 stars 63 forks source link

Captcha never solve #101

Closed FuckingToasters closed 1 year ago

FuckingToasters commented 2 years ago

Hi, somehow the captcha never solve itself.

            pystyle.Write.Print("\t[*] Solving captcha... please be patient!\n", pystyle.Colors.yellow, interval=0)
            harvester = Harvester('0.0.0.0', 7777)
            captchatokens = harvester.intercept_hcaptcha(domain='discord.com', sitekey=SITE_KEY)
            server_thread = threading.Thread(target=harvester.serve, daemon=True)
            server_thread.start()
            while True:
                print("1")
                captchatoken = captchatokens.get()
                print(captchatoken)

Using this Code above, it print me number 1 after that it's just waiting for a undefined period of time ( unlimited waiting) Hope that there is a solution for it.

Regards, FuckingToasters

NoahCardoza commented 2 years ago

Are you trying to solve it in the window that opens up?