国税发票查验验证码识别
資深大佬 : legend99 2
import base64 import requests with open('./test02.png', 'rb') as f: img_bytes = f.read() img_base64 = base64.b64encode(img_bytes) # '00' 黑色 '01' 红色 '02' 黄色 '03' 蓝色 data = {'image': str(img_base64, 'utf-8'), 'key': '03'} result = requests.post('http://47.99.174.98:8808/captcha', json=data) # 返回 json 格式数据{"code": "7RT"} print(result.json())
大佬有話說 (4)