Skip to content

Instantly share code, notes, and snippets.

@deangelo200
deangelo200 / captcha-solver.py
Created January 25, 2021 16:04 — forked from lobstrio/captcha-solver.py
Solving (simple) Captcha, using PyTesseract, PIL, and Python 3
#!/usr/bin/python3
# coding: utf-8
import pytesseract
import os
import argparse
try:
import Image, ImageOps, ImageEnhance, imread
except ImportError:
from PIL import Image, ImageOps, ImageEnhance