将Python获取请求转换为xml / json

时间:2019-05-09 21:52:43

标签: json xml python-3.x

我是一位尝试使用python的网络人。我正在尝试在其中一台设备上使用rest api,并使用请求库通过python 3使用它。

url = 'https://erspan/api/?type=op&cmd=<show><system>'...not a complet url
rs = requests.get(url, verify=False)
print(rs.headers)
print(rs.text)
{'Date': 'Thu, 09 May 2019 21:34:39 GMT', 'Content-Type': 'application/xml; charset=UTF-8', 'Content-Length': '1891', 'Connection': 'keep-alive', 'ETag':.....}


<response status="success"><result><system><hostname>erspan</hostname><ip-a.......

为此的对象类型是

print(type(rs))
<class 'requests.models.Response'>

我想将其作为json

0 个答案:

没有答案