Easiest way to send XML via HTTP requests in Python?
问题 Is there a preferred python module that could help me to send XML through a HTTP request and be able to parse the returning XML? 回答1: One way would be to use urllib2: r = urllib2.Request("http://example.com", data="<xml>spam</xml>", headers={'Content-Type': 'application/xml'}) u = urllib2.urlopen(r) response = u.read() Note that you have to set the content-type header, or the request will be sent application/x-www-form-urlencoded . If that's too complicated for you, then you can also use the