赞
踩
import requests
api_url="https://server.simpletex.cn/api/latex_ocr" # 接口地址
data = {
}# 请求数据
header={ "token":"需要自己申请key"} # 鉴权信息,此处使用UAT方式
file=[("file",("test.png",open("test.png", 'rb')))] # 请求文件,字段名一般为file
res = requests.post(api_url, files=file, data=data, headers=header) # 使用requests库上传文件
print(res.status_code)
print(res.text)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。