首页 驾驶证识别 驾驶证识别示例代码 驾驶证识别[Python]

驾驶证识别示例代码Python

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

驾驶证识别

import requests
import base64

# 你的appkey
appkey = 'your_appkey_here'
url = f"https://api.jisuapi.com/driverlicenserecognition/recognize?appkey={appkey}"

with open('sfz1.jpg', 'rb') as file:
    pic_base64 = file.read()
    pic_base64 = base64.b64encode(pic_base64)

post_data = {
    'pic': pic_base64
}
response = requests.post(url, data=post_data)
jsonarr = response.json()
if jsonarr['status'] != 0:
    print(jsonarr['msg'])
else:
    result = jsonarr['result']
    print(f"{result['licensenumber']} {result['realname']} {result['sex']}")
    print(f"{result['address']} {result['birth']} {result['initialdate']}")
    print(f"{result['type']} {result['startdate']} {result['enddate']}")