Are you using a like Selenium or just making Requests ?
# Use Tesseract with configuration for single line of text custom_config = r'--oem 3 --psm 8 -c tessedit_char_whitelist=ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' text = pytesseract.image_to_string(denoised, config=custom_config) captcha solver python github
# Solve the CAPTCHA using the solver solver = captcha_solver.Solver() solution = solver.solve(image) Are you using a like Selenium or just making Requests