• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Bottle部署web服务及postman接口的方法

    Bottle是一个快速、简洁、轻量级的基于WSIG的微型Web框架,此框架只由一个 .py 文件,除了Python的标准库外,其不依赖任何其他模块。

    from bottle import route, request, run
    import requests
    import cv2
    import numpy as np
     
    @route('/testimg',method='POST')#
    def testimg():
     try:
      #获取对应params值
      result = {}
      result["name"] = request.query.name#
      result["nums"] = request.query.nums
      
      #获取json对应内容
      #print(request.json)
      urllist = request.json["urllist"]
      #print(type(urllist))
      #print(urllist)
      imgPath = []
      for i in range(len(urllist)):
       imgPath.append(urllist[i])
     
      for i in range(len(imgPath)):
       #print(imgPath[i])
       #基于url获取数据
       rev = requests.get(imgPath[i], verify=False) # , timeout=config.timeout
       img = cv2.imdecode(np.frombuffer(rev.content, np.uint8), cv2.IMREAD_COLOR) # 直接解码网络数据,获得bgr图片
      rec = 0
       
      return str(rec)
     except BaseException as e:
      logger.exception(e)
      return str(0)
     
    if __name__ == "__main__":
     
     run(host='172.17.0.2', port=49166, debug=False)

    postman接口测试。

    params传递参数。

    body传递json等文本数据。

    到此这篇关于Bottle部署web服务及postman接口的方法的文章就介绍到这了,更多相关Bottle部署web服务postman接口内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • 使用postman进行接口测试的方法(测试用户管理模块)
    • 基于postman实现http接口测试过程解析
    上一篇:使用postman进行接口测试的方法(测试用户管理模块)
    下一篇:关于idea+centos7+zookeeper报错connectionloss,timeout问题
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Bottle部署web服务及postman接口的方法 Bottle,部署,web,服务,及,postman,