python识别验证码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python识别验证码相关的知识,希望对你有一定的参考价值。

1、python识别验证码依赖 tesseract-ocr-setup-3.02.02.exe,所以首先需要安装 tesseract-ocr-setup-3.02.02.exe

2、然后安装pytesseract,通过pytesseract调用tesseract-ocr来识别验证码。pip install pytesseract

运行代码:

import requests
from PIL import Image
from StringIO import StringIO
import pytesseract

res = requests.get(‘http://xxxxx/validateCode?‘)
#print res.content
i = Image.open(StringIO(res.content))
i.save(‘code.jpg‘,‘JPEG‘)
print pytesseract.image_to_string(i)









以上是关于python识别验证码的主要内容,如果未能解决你的问题,请参考以下文章

Python 代码实现验证码识别

python 验证码识别示例 简单验证码识别

python 验证码识别示例 简单验证码识别

python识别验证码

python利用selenium库识别点触验证码

贴吧旋转验证码---python破解代码