pytesseract模塊支持:
鏈接:https://pan.baidu.com/s/1URKMjx2r8ff34-pmtmgvdQ
密碼:e6fv
安裝完成后需要添加運(yùn)行文件到系統(tǒng)的環(huán)境變量當(dāng)中
from PIL import Image
import requests
import pytesseract
codeurl = 'https://vis.vip.com/checkCode.php?t=0.898739192822086'
valcode = requests.get(codeurl)
f = open('checkCode.jpg', 'wb')
# 將response的二進(jìn)制內(nèi)容寫入到文件中
f.write(valcode.content)
# 關(guān)閉文件流對(duì)象.
f.close()
im = Image.open('checkCode.jpg')
text = pytesseract.image_to_string(im)
print(text)