import requests import base64 appkey = 'your_appkey_here' url = f"https://api.jisuapi.com/vinrecognition/recognize?appkey={appkey}" with open('11.jpg', 'rb') as file: pic_base64 = base64.b64encode(file.read()).decode('utf-8') post_data = { 'pic': pic_base64 } response = requests.post(url, data=post_data) response.raise_for_status() jsonarr = response.json() if jsonarr['status'] != 0: print(jsonarr['msg']) else: result = jsonarr['result'] print(f"{result['vin']} {result['iscorrect']} {result['brand']} {result['manufacturer']}")
© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875