-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_.py
96 lines (72 loc) · 2.14 KB
/
json_.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
import json
from json import JSONEncoder
person = {
'name': 'Alice',
'age': 20,
'city': 'New York',
'hasChildren': True,
'titles': [
'Engineer',
'Programmer'
],
'relative': {
'firstName': 'John',
'LastName': 'Doe',
'Hobbies': ['running', 'singing', 'dancing'],
'age': 28,
'hasChildren': True,
'children': [
{
'firstName': 'Alex',
'age': 5
},
{
'firstName': 'Bob',
'age': 7
}
]
}
}
# Converting Python Dict to JSON
fp = json.dumps(person, indent=4, sort_keys=True) # separators=('; ', '= ')
mp = json.dumps(person, indent=4, sort_keys=True)
# Converting JSON to Python Dict
f_person = json.loads(fp)
print(f_person)
# Writing to a json file
with open('data.json', 'w') as json_file:
json_file.write(f"{fp}")
# Converting JSON File to Python Dict
with open('data.json', 'r') as j_file:
f_person_file = json.load(j_file)
print("Loading JSON File...", f_person_file)
class User:
def __init__(self, name, age):
self.name = name
self.age = age
def encode_user(obj):
if isinstance(obj, User):
return {'name': obj.name, 'age': obj.age, obj.__class__.__name__: True}
else:
raise TypeError('Object of type User in not JSON serializable!')
user = User('John', 'Doe')
userJSON = json.dumps(user, default=encode_user)
print(userJSON)
# Custom JSON encoder
class UserEncoder(JSONEncoder):
def default(self, obj):
if isinstance(obj, User):
return {'name': obj.name, 'age': obj.age, obj.__class__.__name__: True}
return JSONEncoder.default(self, obj)
userJS = json.dumps(user, cls=UserEncoder)
userJ = UserEncoder().encode(user)
print(userJS)
print(userJ)
# Custom JSON decoder
def decode_user(dict_):
if User.__name__ in dict_:
return User(name=dict_['name'], age=dict_['age'])
return dict_
userD = json.loads(userJSON, object_hook=decode_user)
print(userD.name, userD.age)
print(userD)