您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用Bottle怎么對postman接口進行配置,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
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: #獲取對應(yīng)params值 result = {} result["name"] = request.query.name# result["nums"] = request.query.nums #獲取json對應(yīng)內(nèi)容 #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獲取數(shù)據(jù) rev = requests.get(imgPath[i], verify=False) # , timeout=config.timeout img = cv2.imdecode(np.frombuffer(rev.content, np.uint8), cv2.IMREAD_COLOR) # 直接解碼網(wǎng)絡(luò)數(shù)據(jù),獲得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傳遞參數(shù)。
body傳遞json等文本數(shù)據(jù)。
上述內(nèi)容就是使用Bottle怎么對postman接口進行配置,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。