标签: python-3.x http.client
目前我正在使用http.client模块从我的apache服务器下载文件。我想知道是否有办法用request或urllib模块替换这组代码。
con = http.client.HTTPConnection(ip,source_address=(s_ip,80)) con.request("GET","/"+file_name) r1 = con.getresponse()
我可以使用请求或urllib模块执行上述任务。我想从多个源ip发送多个请求。