如何使用 Python 的 httplib 将 POST 发送到 URL,并带有参数字典?
我只想要一个可以接受 2 个参数的函数:
- URL
- POST 到参数字典的
如何使用 httplib 来完成此操作?谢谢。
I just want a function that can take 2 parameters:
- the URL to POST to
- a dictionary of parameters
How can this be done with httplib? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Python 文档:
From the Python documentation:
一种更简单的方法,仅使用 urllib:
在 Python 文档中找到 urllib 模块
A simpler one, using just urllib:
Found in Python docs for urllib module