-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_xml_parse.py
executable file
·46 lines (38 loc) · 1.35 KB
/
json_xml_parse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
# json with embedded XML conversion
# J.P. Pasnak, CD
# 09/01/2024
import sys
import json
import xmltodict
import argparse
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
import warnings
warnings.simplefilter("ignore")
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("-i","--input_file", help="Input File")
parser.add_argument("-f","--json_field", help="JSON field that contains XML")
parser.add_argument("-o","--output_file", help="Output File")
args = parser.parse_args()
# Set args
input_file = args.input_file
output_file = args.output_file
json_field = args.json_field
# Read the JSON file
with open(input_file, 'r') as file:
data = json.load(file)
# Iterate through the list of items
for item in data:
# Extract the field containing XML from each item
xml_data = item[json_field]
try:
# Convert XML to JSON, strip out newlines
json_data = xmltodict.parse(xml_data)
# Update the original item with the new JSON data
item[json_field] = json_data
except Exception as e:
print(f"Error parsing XML data at line {e.lineno}, column {e.offset}: {e}")
print(f"Bad XML data: (xml_data)")
# Write the updated JSON to a new file
with open(output_file, 'w') as updated_file:
json.dump(data, updated_file, indent=2)