new changes
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled

This commit is contained in:
2026-03-13 12:05:03 +08:00
commit b16a782f67
27 changed files with 6295 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import pytesseract
from PIL import Image
def solve_captcha(image_path):
# 使用OCR识别验证码
image = Image.open(image_path)
captcha_text = pytesseract.image_to_string(image)
return captcha_text