DEFAULTS = {
    "PASSWRD" : {
        0 : "None",
        1: "Requires standard password",
        2: "Requires factory password",
    },
    "COMMANDS" : {
        "ZS" : {
            "Type" : "SETUP",
            "Max Parameters Required" : 1,
            "Parameters" : "[,n]",
            "Definition" : "Set/Get Seeder delay",
            "Password": 0
        },
        "ZV" : {
            "Type" : "SETUP",
            "Max Parameters Required" : 1,
            "Parameters" : "[,n]",
            "Definition" : "Set/Get Variable Sync delay",
            "Password": 0
        },
    }
}

for command, stuff in DEFAULTS["COMMANDS"].items():
    print(f"\nCommand: {command}")
    print(f'{stuff["Definition"]}')
    print(f'{stuff["Password"]}')
    print(DEFAULTS["PASSWRD"][stuff["Password"]])
