import requests appkey = 'your_appkey_here' type = 'ean13' barcode = '6901236341056' fontsize = 12 dpi = 72 scale = 2 height = 40 url = f"https://api.jisuapi.com/barcode/generate?appkey={appkey}&type={type}&barcode={barcode}&fontsize={fontsize}&dpi={dpi}&scale={scale}&height={height}" result = requests.get(url).text jsonarr = requests.get(url).json() if jsonarr['status'] != 0: print(jsonarr['msg']) else: result = jsonarr['result'] content = result['barcode'] print(result['code'], result['fontsize'], result['dpi'], result['scale'], result['height']) print(f'')
© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875