Python

Python XML to JSON

Python XML to JSON

Extensible Markup Language (XML) and JavaScript Object Notation (JSON) are two famous data formats for the storage of data. Both JSON and XML allow us to store the data in such a way that is readable by human as well as machines. To begin with, JSON is a type of data structure that is mainly used to exchange data between servers and software applications. It stores the data as key-value pairs. JSON makes an object of the data where key-value pairs are separated on the basis of the colon (:), and one complete key-value pair separated by others based on the comma.

Furthermore, XML is an HTML type markup language that is also used to store the data. But, the XML does not provide any kind of predefined tags. We can create our own tags and store the data. As we discussed, both JSON and XML are used to exchange data between the servers and software applications. However, the two data formats differ somewhat. The JSON is an object type data storage format, whereas XML has no type. The XML files only store the data in string format and heavier than the JSON file. Whereas the JSON files can store the string, arrays, numbers floating-point numbers, and Boolean.

This article explains XML to JSON conversion using Python. Python xmltodict module is used to convert the XML to JSON format.

The xmltodict module installation

Before start converting XML to JSON, we need to install the xmltodict module. The xmltodict module can be installed using the python index package (pip), and it can be installed in Python 2 and 3. In the case of pip2, execute the following command to install the xmltodict module:

pip install xmltodict

If you are using pip3, then run the following command to install the xmltodict module:

pip3 install xmltodict

In the case of Debian based system, then run the following command to install the xmltodict module:

sudo apt install python-xmltodict

The above-given command is suitable for Python2. In the case of the Python3 version, run the following command:

sudo apt install python3-xmltodict

XML to JSON conversion

Now let's convert the XML data to JSON format. We will use the xmltodict and JSON module for this conversion. The json is a built-in Python module. Therefore, the need to install them is eliminated. The xmltodict.parse() function converts the XML data into Python dictionary. Then, the json.dumps() function takes the converted dictionary object as an argument and further convert it into the JSON format. So this is a two steps process:

First we have to convert the XML into Python dictionary object using xmltodict.parse() function.

Secondly, we convert Python dictionary object to JSON format using json.dumps() function. In json.dumps() function, the indent property is used to add spaces between the data.

#importing the modules
import xmltodict
import json
#declaring the xml
my_xml = """


1
Les Jardins du Marais
3
Internet
True


2
Golden Tulip Little Palace
4

Internet
Gym
Parking
Restaurant

False


"""
#coverting xml to Python dictionary
dict_data = xmltodict.parse(my_xml)
#coverting to json
json_data = json.dumps(dict_data, indent=2)
print(json_data)

Output

The output shows that the XML is successfully converted to JSON format.

XML file to JSON file conversion

The XML files data can be converted and saved into the JSON file. Let's open the XML file, convert the XML data to JSON and store it in a JSON file.

The following is the XML file.

#importing the modules
import json
import xmltodict
# opening the xml file
with open("hotels.xml","r") as xmlfileObj:
#converting xml data to dictionary
data_dict = xmltodict.parse(xmlfileObj.read())
xmlfileObj.close()
#creating JSON object using dictionary object
jsonObj= json.dumps(data_dict)
#storing json data to json file
with open("hotels.json", "w") as jsonfileObj:
jsonfileObj.write(jsonObj)
jsonfileObj.close()

Output

The Python interpreter does not show any error; it means that the JSON data is successfully saved in a .json file.

Conclusion

XML and JSON are two popular data formats to store data. The XML data can be converted into JSON format using the xmltodict and JSON module. This article explains the XML to JSON data conversion with examples.

How to change Mouse pointer and cursor size, color & scheme on Windows 10
The mouse pointer and cursor in Windows 10 are very important aspects of the operating system. This can be said for other operating systems as well, s...
Безкоштовні ігри з відкритим кодом для розробки ігор Linux
У цій статті буде розглянуто перелік безкоштовних ігрових механізмів з відкритим кодом, які можна використовувати для розробки 2D та 3D ігор на Linux....
Підручник Тінь розкрадача гробниць для Linux
Shadow of the Tomb Raider - дванадцяте доповнення до серії Tomb Raider - франшизи екшн-пригодницької гри, створеної Eidos Montreal. Гру сприйняли як к...