json formatter Jan 12, 2022 • ulysses If you have a json file that needs formatting, you can use a built-in tool in Python. python -m json.tool sample.json Output will be printed on screen. You can also send the output to a file. python -m json.tool sample.json > sample2.json