如何打印哪个键“丢失"?以及我要获取哪个密钥的“假"密码?从下面的脚本响应?

人气:311 发布:2022-10-16 标签: json python-3.x

问题描述

我的脚本

def validate_record_schema():
    """Validate that the 0 or more Payload dicts in record
    use proper types"""
    err_path = "root"
    try:
        for record in original_data:
            device = record["Device"]
            icon = device["Icon"]

            key_data = ((device["ManualAdded"], bool), (device["Location"], (str, type(None))),
                        (device["Version"], (str, type(None))), (device["Vendor"], (str, type(None))), (device["Language"], list),
                        (device["Fullname"], (str, type(None))),
                        (device["SchemaVersion"], (str, type(None))),(device["Warnings"], list),
                        (icon["DeviceType"], (str, type(None)))),(icon["Decorators"], (str, type(None))),\
                       (device["SysSwUpdatePrepare"], (str, type(None))),(device["SysSwUpdatePerform"], (str, type(None)))
            for i in key_data:
                if not isinstance(*i):
                    return False

    except KeyError as err_path:
        print("missing key")
        return False
    return True

print(validate_record_schema())

我想打印哪个键丢失(如果没有显示键)以及哪个键我得到"false"作为响应.

I want to print which key is missing(If key is not presented) and for which key i am getting "false" as response.

请据此修改我的脚本.

Json数据

original_data =[{'Id': '12', 'Type': 'DevicePropertyChangedEvent', 'Payload': [{'DeviceType': 'producttype', 'DeviceId': 2, 'IsFast': False, 'Payload': {'DeviceInstanceId': 2, 'IsResetNeeded': False, 'ProductType': 'product'
    , 'Product': {'Family': 'home'}, 'Device': {'DeviceFirmwareUpdate': {'DeviceUpdateStatus': None, 'DeviceUpdateInProgress': None, 'DeviceUpdateProgress': None, 'LastDeviceUpdateId': None}, 'ManualAdded': False,
     'Name': {'Value': 'Jigital60asew', 'IsUnique': True}, 'State': None, 'Location': '', 'Serial': None, 'Version': '2.0.1.100','Vendor':'Sennheiser','Language':['en_GB']}}}]}]

推荐答案

我建议您采用使用JSON模式验证您的JSON的方法,而不是重新发明轮子.

I would suggest going the route of using JSON Schema for validating your JSON instead of reinventing the wheel.

https://python-jsonschema.readthedocs.io/en/latest/

159