7
如何將我的系統上的xml文件發送到使用python標準庫的http服務器?使用python發送xml文件到http
如何將我的系統上的xml文件發送到使用python標準庫的http服務器?使用python發送xml文件到http
import urllib
URL = "http://host.domain.tld/resource"
XML = "<xml />"
parameter = urllib.urlencode({'XML': XML})
使用HTTP POST
response = urllib.urlopen(URL, parameter)
print response.read()
b)使用HTTP GET
response = urllib.urlopen(URL + "?%s" % parameter)
print response.read()
這將是最簡單的解決
一個)。
您可以通過標準的http post請求來實現。