栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

通过特定的网络接口发送http请求

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

通过特定的网络接口发送http请求

我找到了使用的方法

pycurl
。这就像一个魅力。

import pycurlfrom io import BytesIOimport jsondef curl_post(url, data, iface=None):    c = pycurl.Curl()    buffer = BytesIO()    c.setopt(pycurl.URL, url)    c.setopt(pycurl.POST, True)    c.setopt(pycurl.HTTPHEADER, ['Content-Type: application/json'])    c.setopt(pycurl.TIMEOUT, 10)    c.setopt(pycurl.WRITEFUNCTION, buffer.write)    c.setopt(pycurl.POSTFIELDS, data)    if iface:        c.setopt(pycurl.INTERFACE, iface)    c.perform()    # Json response    resp = buffer.getvalue().depre('UTF-8')    #  Check response is a JSON if not there was an error    try:        resp = json.loads(resp)    except json.deprer.JSONDepreError:        pass    buffer.close()    c.close()    return respif __name__ == '__main__':    dat = {"id": 52, "configuration": [{"eno1": {"address": "192.168.1.1"}}]}    res = curl_post("http://127.0.0.1:5000/network_configuration/", json.dumps(dat), "wlp2")    print(res)

我让问题悬而未决,希望有人可以使用给出答案

requests



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/651897.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号