-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsonanalyzer.py
96 lines (82 loc) · 3 KB
/
jsonanalyzer.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
'''
Script to show structure of json files
Version: 3.6
Author Siggi Bjarnason Copyright 2019
Website http://www.ipcalc.us/ and http://www.icecomputing.com
'''
# Import libraries
import sys
import os
import time
import json
try:
import tkinter as tk
from tkinter import filedialog
btKinterOK = True
except:
print ("Failed to load tkinter, CLI only mode.")
btKinterOK = False
# End imports
# Initialize stuff
strJSONfile = ""
#Start doing stuff
print ("This is a script to show structure of json files. This is running under Python Version {0}.{1}.{2}".format(
sys.version_info[0],sys.version_info[1],sys.version_info[2]))
now = time.asctime()
print ("The time now is {}".format(now))
def getInput(strPrompt):
if sys.version_info[0] > 2 :
return input(strPrompt)
else:
return raw_input(strPrompt)
# end getInput
def Analyze(dictInspect,strPrefix):
if isinstance(dictInspect,dict):
for strKey in dictInspect.keys():
if isinstance(dictInspect[strKey],(dict,list)):
print ("{}{} is a {} and has {} elements".format(strPrefix, strKey,type(dictInspect[strKey]),len(dictInspect[strKey])))
Analyze(dictInspect[strKey],strPrefix+strKey+"/")
else:
print ("{}{} is a {}".format(strPrefix, strKey,type(dictInspect[strKey])))
elif isinstance(dictInspect,list):
print ("{} Element is a list and has {} elements".format(strPrefix, len(dictInspect)))
if len(dictInspect) > 0:
if isinstance(dictInspect[0],dict):
print ("{} first instance in the list is a dictionary and has the following elements:".format(strPrefix))
for strKey in dictInspect[0]:
print ("{}{} is a {}".format(strPrefix, strKey,type(dictInspect[0][strKey])))
if isinstance(dictInspect[0][strKey],(dict,list)):
Analyze(dictInspect[0][strKey],strPrefix+strKey+"/")
else:
print ("{} first instance in the list is a {}".format(strPrefix, type(dictInspect[0])))
else:
print ("List has no elements, moving on.")
else:
print("{} dictInspect not a list or a dictionary".format(strPrefix))
sa = sys.argv
lsa = len(sys.argv)
if lsa > 1:
strJSONfile = sa[1]
if strJSONfile == "":
if btKinterOK:
print ("File name to be imported is missing. Opening up a file open dialog box, please select the file you wish to import.")
root = tk.Tk()
root.withdraw()
strJSONfile = filedialog.askopenfilename(title = "Select the json file",filetypes = (("json files","*.json"),("Text files","*.txt"),("all files","*.*")))
else:
strJSONfile = getInput("Please provide full path and filename for the json file to be imported: ")
if strJSONfile == "":
print ("No filename provided unable to continue")
sys.exit()
if os.path.isfile(strJSONfile):
print ("OK found {}".format(strJSONfile))
else:
print ("Can't find json file {}".format(strJSONfile))
sys.exit(4)
with open(strJSONfile,"r") as objFilejson:
dictFile = json.load(objFilejson)
print ("File loaded, result is a: {}".format(type(dictFile)))
if isinstance(dictFile,(list,dict)):
Analyze(dictFile,"/")
else:
print("file did not load as a json dictionary or list, can't process")