Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
urllib.request 和 http.client 都是 python 标准库。前者相关方法的文档在这里,后者在这里(我使用 3.5)
有谁知道为什么他们在标准库中有两种方法似乎做同样的事情,或者它们之间的区别是什么?
问的原因是,我正在合并一些类,目的是发送content-type multipart/form-data仅使用 Python 标准库的 POST 请求。这里有一个关于这个的问题,其中有一个代码链接到一个执行它的类。
content-type
multipart/form-data
请参阅: Python urllib 与 httplib?