-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathjsonpy.py
66 lines (46 loc) · 1.21 KB
/
jsonpy.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
import json # IMPORTIAMO LA LIBRERIA JSON ALTRIMENTI NON ANDRà NULLA
# RICEVERE UN JSON:
x = '{ "Nome":"Mirko", "Età":36, "Città":"Old York"}'
# caricare l'elemento x:
y = json.loads(x)
#il risultato sarà un Python dictionary:
print(y["Età"])
#inviare e creare un json
# ora abbiamo l'oggetto (dict):
x1 = {
"Nome": "Micheal",
"Valore": 28,
"Stile": "old london"
}
# convertire in JSON:
y1 = json.dumps(x1)
# il risultato sarà un JSON in string:
print(y1)
# Ecco i tipi convertibili
# # dict
# # list
# # tupla
# # int
# # float
# # Vero
# # Falso
# # none
# # Utilizzare il indent parametro per definire il numero di rientri:
json.dumps(x, indent=4)
# # Utilizzo del separatore per modificare il separatore predefinito:
u = {
"name": "John",
"age": 30,
"married": True,
"divorced": False,
"children": ("Ann","Billy"),
"pets": None,
"cars": [
{"model": "BMW 230", "mpg": 27.5},
{"model": "Ford Edge", "mpg": 24.1}
]
}
# facilità la lettura:
print(json.dumps(u, indent=6))
json.dumps(u, indent=4, sort_keys=True) # Sort_Key può ordinare automaticamente un elemento quando scrivimo o leggiamo un dato
print(u)