首页 增值税发票识别 增值税发票识别示例代码 增值税发票识别[Python]

增值税发票识别示例代码Python

作者: 阅读数:1138 上传时间:2025-04-03

增值税发票识别

import requests
import base64

appkey = 'your_appkey_here'
url = f"https://api.jisuapi.com/businesslicenserecognition/recognize?appkey={appkey}"

with open('sfz1.jpg', 'rb') as image_file:
    encoded_string = base64.b64encode(image_file.read()).decode('utf-8')
post_data = {
    'pic': encoded_string
}
response = requests.post(url, data=post_data)
jsonarr = response.json()

if jsonarr['status'] != 0:
    print(jsonarr['msg'])
    exit()
result = jsonarr['result']
print(result['name'], result['creditno'], result['legalperson'], result['regcapital'])
print(result['regdate'], result['enddate'], result['regaddress'], result['scope'])
print(result['regorgan'])

相关代码RELATED CODE