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())
import requests
# fpdm 为发票代码,fphm 为发票号码,rq 为开票日期,jym 为校验码后六位,专票 jym 为不含税金额
# data 为脱敏数据,用自己的真实发票查询
data = {'fpdm': '040001505520', 'fphm': '38507520', 'rq': '20520520', 'jym': '865520'}
result = requests.post('http://47.99.174.98:8808/fp', json=data)
print(result.json())
{'key1': '001', 'key2': '20≡20181106≡上海***********≡913101173324054932≡上海松江区乐都路 301 号 3 楼 021-57662117≡******************* 121915447210901≡个人≡ ≡≡≡83298822850720535288≡17.83≡315.00≡≡661610196301≡≡297.17≡0≡≡1', 'key3': '餐饮服务餐饮服务█████297.17█0.060█17.83██3070401000000000000', 'key4': '', 'key5': '1', 'key11': 'o'}
作者:Open_CV_NLP,Open_CV_NLP_New
http://47.99.174.98:8808/