import threading from time import time from hcaptcha import HCaptcha def main_thread(): start = time() try: solved = client.solve() took = int(time() - start) * 1000 print(f"[!] Solved captcha ({took}ms) | {solved[:28]}") except Exception: pass if __name__ == '__main__': client = HCaptcha( host="discord.com", sitekey="4c672d35-0701-42b2-88c3-78380b0db560" ) for _ in range(100): threading.Thread(target=main_thread).start()