How to convert txt to json python

JSON (JavaScript Object Notation) is a data-interchange format that is human-readable text and is used to transmit data, especially between web applications and servers. The JSON files will be like nested dictionaries in Python. To convert a text file into JSON, there is a json module in Python. This module comes in-built with Python standard modules, so there is no need to install it externally. See the following table given below to see serializing JSON i.e. the process of encoding JSON.

Python objectJSON object
dict object
list, tuple array
str string
int, long, float numbers
True true
False false
None null

To handle the data flow in a file, the JSON library in Python uses dump() function to convert the Python objects into their respective JSON object, so it makes easy to write data to files. Syntax:

json.dump()

Various parameters can be passed to this method. They help in improving the readability of the JSON file. They are :

  • dict object : the dictionary which holds the key-value pairs.
  • indent : the indentation suitable for readability(a numerical value).
  • separator : How the objects must be separated from each other, how a value must be separated from its key. The symbols like “, “, “:”, “;”, “.” are used
  • sort_keys : If set to true, then the keys are sorted in ascending order

Here the idea is to store the contents of the text as key-value pairs in the dictionary and then dump it into a JSON file. A simple example is explained below. The text file contains a single person’s details. The text1.txt file looks like:

How to convert txt to json python
Now to convert this to JSON file the code below can be used: 

Python3

import json

filename = 'data.txt'

dict1 = {}

with open(filename) as fh:

    for line in fh:

        command, description = line.strip().split(None, 1)

        dict1[command] = description.strip()

out_file = open("test1.json", "w")

json.dump(dict1, out_file, indent = 4, sort_keys = False)

out_file.close()

When the above code is executed, if a JSON file exists in the given name it is written to it, otherwise, a new file is created in the destination path and the contents are written to it. Output:

How to convert txt to json python
Note the below line of code:

command, description = line.strip().split(None, 1)

Here split(None, 1) is used to trim off all excess spaces between a key-value pair and ‘1’ denotes split only once in a line. This ensures in a key-value pair, the spaces in the value are not removed and those words are not split. Only the key is separated from its value. How to convert if multiple records are stored in the text file ? Let us consider the following text file which is an employee record containing 4 rows.

How to convert txt to json python
The idea is to convert each employee’s detail into an intermediate dictionary and append that to one main resultant dictionary. For each intermediate dictionary a unique id is created and that serves as the key. Thus here the employee id and an intermediate dictionary make a key-value pair for the resultant dictionary to be dumped. 

Python3

import json

filename = 'data.txt'

dict1 = {}

fields =['name', 'designation', 'age', 'salary']

with open(filename) as fh:

    l = 1

    for line in fh:

        description = list( line.strip().split(None, 4))

        print(description)

        sno ='emp'+str(l)

        i = 0

        dict2 = {}

        while i<len(fields):

                dict2[fields[i]]= description[i]

                i = i + 1

        dict1[sno]= dict2

        l = l + 1

out_file = open("test2.json", "w")

json.dump(dict1, out_file, indent = 4)

out_file.close()

The attributes associated with each column is stored in a separate list called ‘fields’. In the above code, Each line is split on the basis of space and converted into a dictionary. Each time the line print(attributes) get executed, it appears as given below.

['Lisa', 'programmer', '34', '54000']
['Elis', 'Trainee', '24', '40000']
['Rickson', 'HR', '30', '47000']
['Kate', 'Manager', '54', '63000']

The JSON file created by this code looks like :

How to convert txt to json python


Can we convert a text file to JSON in Python?

To convert a text file into JSON, there is a json module in Python. This module comes in-built with Python standard modules, so there is no need to install it externally. See the following table given below to see serializing JSON i.e. the process of encoding JSON.

How do I convert a TXT file to JSON?

About This Article.
Go to https://anyconv.com/txt-to-json-converter/ in a web browser..
Click Choose File..
Navigate to and double-click to open your TXT file..
Click Convert..
Click Download..

How do I convert data to JSON data in Python?

If you have a Python object, you can convert it into a JSON string by using the json. dumps() method.

Can we convert string to JSON?

String data can be easily converted to JSON using the stringify() function, and also it can be done using eval() , which accepts the JavaScript expression that you will learn about in this guide.