当前位置:   article > 正文

simpletex的api调用代码_simpletex api

simpletex api
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)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/785175
推荐阅读
相关标签
  

闽ICP备14008679号