Created
June 19, 2020 01:45
-
-
Save ksomemo/d4753e3d60710c47a9caf71079790031 to your computer and use it in GitHub Desktop.
Revisions
-
ksomemo revised this gist
Jun 19, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,3 @@ python -c 'import sys,json as j;print(j.dumps(j.loads(sys.stdin.read()),indent=2,ensure_ascii=False))' # no ensure_ascii python -m json.tool -
ksomemo created this gist
Jun 19, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ python -c 'import sys,json as j;j.dumps(j.loads(sys.stdin.read()),indent=2,ensure_ascii=False)' # no ensure_ascii python -m json.tool