Python3内置http.client,urllib.request及三方库requests发送请求对比
一、HTTP,GET请求,无参GEThttp://httpbin.org/get1、Python3http.clientimporthttp.client#1.建立http连接conn=http.client.HTTPConnection(“httpbin.org”)#2.发送get请求,指定接口路径conn.request(“GET”,‘/get’)#3.获取响应res=conn.getresp