有没有办法在python中执行HTTP PUT

我需要使用PUTpython中的HTTP将一些数据上传到服务器。从我对urllib2文档的简短阅读中,它只能使用HTTP POST。有什么办法可以PUT在python中执行HTTP 吗?



慕无忌1623718
浏览 801回答 3
3回答

江户川乱折腾

Httplib似乎是一个更清洁的选择。import httplibconnection =  httplib.HTTPConnection('1.2.3.4:1234')body_content = 'BODY CONTENT GOES HERE'connection.request('PUT', '/url/path/to/put/to', body_content)result = connection.getresponse()# Now result.status and result.reason contains interesting stuff
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python