我必须从下面的 JSON 响应中'id'
单独解析并获取字段值(即在本例中)。13
我的 JSON 响应将采用以下格式。这是获取政策 nessus 电话
{'policies': [{'creation_date': 1546583582,
'description': 'New Scan',
'has_credentials': 0,
'id': 13}]}
我的代码:
import requests
from first import *
url = 'https://localhost:8834/policies'
headers = {'X-Cookie':mys()}
response = requests.get(url, headers=headers, verify=False)
resp = response.json()
for k,v in resp.items():
print (v)
代码响应:
[{'creation_date': 1546583582,'description': 'New Scan','has_credentials': 0,'id': 13}]
我不确定如何编写代码来获得预期响应的结果 -'id' : 13
或者只是13
.