I’m frequently loading and dumping JSON data to and from maya , which is basically append a new dict of variables to a list . All working fine , but I’d really like the JSON to be more readable when debugging . Is there a way to format it better when dumping ? Currently it’s a single line item for my list
Eg
{“master”:[{dict},{dict}]}
The dict entries contain data structures . So it gets pretty long
Is there a way when dumping to represent the list on separate lines, formatting based off commas , a keyword , or something like that ?