【发布时间】:2019-11-11 00:02:19
【问题描述】:
我有这个 json 响应
{ "assets": [
{
"id": 518447,
"created_at": "2019-09-10T10:13:38Z",
"priority": 10,
"operating_system": "Microsoft - Windows - Windows Server 2008 R2, Enterprise Edition - SP1",
"notes": null,
"last_booted_at": null,
"primary_locator": "external_id",
"locator": "1112359",
"vulnerabilities_count": 22,
"status": "active",
"last_seen_time": "2019-09-08T16:00:17Z",
"network_ports": [
{
"id": 33550493,
"port_number": 180,
"extra_info": "",
"hostname": null,
"name": "HTTP",
"ostype": "",
"product": "JBoss EAP",
"protocol": "tcp",
"state": "open",
"version": "4.2.3.GA"
},
{
"id": 33550494,
"port_number": 100,
"extra_info": "",
"hostname": null,
"name": "SNMP",
"ostype": "",
"product": null,
"protocol": "udp",
"state": "open",
"version": null
},
],
"tags": [
"Windows Server",
"DO - DO SPG BOM"
],
"owner": null,
"urls": {
"vulnerabilities": ""
},
"ip_address": "10.10.10.1",
"database": null,
"hostname": null,
"fqdn": null,
"netbios": null,
"application": null,
"file": null,
"mac_address": null,
"ec2": null,
"url": null,
"external_id": "1112359",
"ipv6": null,
"asset_groups": [
{
"id": 4,
"name": "0 Global - All"
},
{
"id": 204,
"name": "DO - All"
},
{
"id": 417,
"name": "Do - All"
}
]
}
我已经通过第一个索引 [0] 尝试过,但我知道有更好的方法来解决这个问题
import request
import json
url = 'https://thisismyurl.com/assets/'
token = 'blahblah'
headers = {'X-Risk-Token': token, 'Accept': 'application/json'}
response = requests.get(url,headers=headers)
print(response.status_code)
json_format = json.loads(response.text)
for a in json_format['assets']:
for key, value in json_format:
print('operating_system : ' + json_format['assets'][0]['operating_system'] + ' , ' + 'ip_address : ' + json_format['assets'][0]['ip_address'] + 'tags : ' + json_format['assets'][0]['tags'])
但我的方式并没有产生我想要的预期输出。
我只想通过整个 json 找到每个出现的操作系统、IP 地址和标签
我想要的输出是:
"operating_system": "Microsoft - Windows - Windows Server 2008 R2, Enterprise Edition - SP1", "tags": "Windows Server" "DO - DO SPG BOM" , "ip_address": "10.10.10.1".
我如何用 Python 做到这一点?
【问题讨论】:
-
"但是我的方式并没有产生我想要的预期输出。"你可以说得更详细点吗?另外,我尝试解析您在上面共享的 JSON 示例,但出现解码器错误。
-
JSON 示例中似乎缺少一些字符。此外,您的
print('operating system....行似乎没有正确缩进,尽管我不知道这是您的代码中的问题还是只是添加到您的帖子中的方式。 -
@AlexanderCécile 我打印出来的只是每个特定字段的第一个索引
print('operating_system : ' + json_format['assets'][0]['operating_system']只打印我想要遍历整个 json 的第一次出现 -
看我的回答:)
-
我更新的答案对你有用吗?