http.client.HTTPConnection.request 对比 urllib.request.Request
http.client.HTTPConnection.request vs. urllib.request.Request
urllib.request 和 http.client 都是 python 标准库。前者相关方法的文档是 here and the latter, here (am using 3.5)
有谁知道为什么标准库中有 2 个方法看起来做同样的事情,或者它们之间的区别是什么?
提问的原因是,我正在合并一些 classes,目标是使用 [=25] 发送 content-type
multipart/form-data
的 POST 请求=] 仅限标准库。有一个关于 here with a link to code 的问题,class 是这样做的。
见:
urllib.request 和 http.client 都是 python 标准库。前者相关方法的文档是 here and the latter, here (am using 3.5)
有谁知道为什么标准库中有 2 个方法看起来做同样的事情,或者它们之间的区别是什么?
提问的原因是,我正在合并一些 classes,目标是使用 [=25] 发送 content-type
multipart/form-data
的 POST 请求=] 仅限标准库。有一个关于 here with a link to code 的问题,class 是这样做的。
见: