识别交通银行验证码

pytesseract 下载地址

1.获取到验证码的url 地址

以下是交通银行 

https://creditcardapp.bankcomm.com/member/CheckCode.svl


import pytesseract

from PILimport Image

url='https://creditcardapp.bankcomm.com/member/CheckCode.svl'   验证码

urllib.request.urlretrieve(url,filename="D:/scrapy/captcha.jpg")   把验证码保存成图片

image=Image.open("D:\\scrapy\captcha.jpg") # 打开图片

vcode = pytesseract.image_to_string(image)# 进行识别

print(vcode)

你可能感兴趣的:(识别交通银行验证码)