Home Code How to pretty print a JSON file in Python?

How to pretty print a JSON file in Python?

Pretty printing makes a json file visually appealing and easy to edit. If you have a JSON file that is compact or not visually appealing, you can easily convert it in Python to a pretty print form.

Pretty Print function in Python

Below is a function that converts any json information into its pretty print version. You can also optionally sort the output by keys or change the pretty print indent size. The function automatically identifies the type of the json data which means you can either pass a json file path, raw json string or a python dictionary, and the function will process it accordingly.

import json
def make_json_pretty(json_info,indent=4,sort=True):
    if type(json_info) is str:         #if json_info is a string
        if json_info.strip()[0]=="{":  #if json_info is raw json data
            json_data=json.loads(json_info)
        else:                          #if json_info is file path
            with open(json_info) as json_file:
                json_data = json.load(json_file)
    elif type(json_info) is dict:      #if json_info is a python dictionary
        json_data = json_info
    else:                              #if json_info is not json data or file path
        raise Exception("first parameter should be JSON file path or JSON data")
    pretty_json = json.dumps(json_data, indent=4, sort_keys=sort)
    return pretty_json
Code language: Python (python)

Pretty Print via Command Line in Python 3

Starting from Python 3, you can pretty print a json file right from the command line! See example below.

python3 -m json.tool < path_to_my_json.jsonCode language: Bash (bash)

The above command will pretty print the JSON data in the console itself. Instead, if you want to save the pretty print version to another file redirect the output as follows.

python3 -m json.tool < path_to_my_json.json > path_to_pretty.jsonCode language: Bash (bash)
Content Protection by DMCA.com

Download HitXP Mobile App

Get it on Google Play
Gurudevhttps://www.hitxp.com
Gurudev is the developer of Gurunudi AI Platform. This is his official website where he pens his thoughts on a wide range of topics, answers queries, shares resources and tools developed by him.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

FacebookLike
InstagramFollow
PinterestFollow
RSS FeedSubscribe
Sound CloudFollow
TwitterFollow
YoutubeSubscribe

Latest Articles

The Power of Democracy: How Free Societies Foster Innovation in Science and Technology

Democracy allows freedom of speech and thought, boosting creativity and innovation. This leads to scientific breakthroughs and technological advancements.

How does GOD helps us?

Do prayers really help? Do miracles happen when we are in trouble? Does God really help us in times of need? Are prayers enough to save us during bad times? How should we face problems?

Sanskrit poem on Ramayana – read in reverse becomes Mahabharata!

A Sanskrit poem about Ramayana when read in reverse direction becomes a poem on Mahabharata!

The difference between Itihasa and Puranas

Documentation of ancient Indian history and the historical events of Indian civilization in the form of Itihasa and Puranas - Ramayana and Mahabharata.

Latest Music Notations

Jai Shri Ram – Adipurush – Piano Notations

Piano, Keyboard, Violin, Flute notes, Guitar Tabs and Sheet Music of the Song Jai Shri Ram from the 2023 Hindi movie Adipurush in Western and Indian Notations.

Sojugada Soojumallige – Garuda Gamana Vrishabha Vahana – Piano Notations

Piano, Keyboard, Violin, Flute notes, Guitar Tabs and Sheet Music of the Song Sojugada Soojumallige from the 2021 Kannada movie Garuda Gamana Vrishabha Vahana in Western and Indian Notations.

Oo Antava Mava – Pushpa – Piano Notations

Piano, Keyboard, Violin, Flute notes, Guitar Tabs and Sheet Music of the Song Oo Antava Mava from the 2022 Telugu movie Pushpa in Western and Indian Notations.

Kaa Chalige Bangalore (Tiningaa Miningaa Tishaaaa) – Salaga – Piano Notations

Piano, Keyboard, Violin, Flute notes, Guitar Tabs and Sheet Music of the Song Tiningaa Miningaa Tishaaaa (Kaa Chali Ge) from the 2022 Kannada movie Salaga in Western and Indian Notations.
Content Protection by DMCA.com