With json.dumps(some_dict,indent=4,sort_keys=True)
in my code:
I get something like this:
JavaScript
x
11
11
1
{
2
"a": {
3
"x":1,
4
"y":2
5
},
6
"b": {
7
"z":3,
8
"w":4
9
}
10
}
11
But I want something like this:
JavaScript
1
13
13
1
{
2
"a":
3
{
4
"x":1,
5
"y":2
6
},
7
"b":
8
{
9
"z":3,
10
"w":4
11
}
12
}
13
How can I force each opening curly brace to appear at the beginning of a new separate line?
Do I have to write my own JSON serializer, or is there a special argument that I can use when calling json.dumps
?
Advertisement
Answer
You can use a regular expression replacement on the result.
JavaScript
1
2
1
better_json = re.sub(r'^((s*)".*?":)s*([[{])', r'1n23', json, flags=re.MULTILINE)
2
The first capture group matches everything up to the :
after the property name, the second capture group matches the whitespace before the property name, and the third capture group captures the {
or [
before the object or array. The whitespace is then copied after the newline, so that the indentation will match properly.