-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjson_data.py
More file actions
78 lines (75 loc) · 1.58 KB
/
json_data.py
File metadata and controls
78 lines (75 loc) · 1.58 KB
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
from json import loads
data = """
[{
"id": 1,
"first_name": "Jaymee",
"last_name": "Maleham",
"email": "jmaleham0@t.co",
"gender": "Female",
"ip_address": "239.91.6.65"
}, {
"id": 2,
"first_name": "Rooney",
"last_name": "Ruprecht",
"email": "rruprecht1@cornell.edu",
"gender": "Male",
"ip_address": "196.217.207.118"
}, {
"id": 3,
"first_name": "Manuel",
"last_name": "Elphinston",
"email": "melphinston2@vk.com",
"gender": "Male",
"ip_address": "69.134.191.72"
}, {
"id": 4,
"first_name": "Morgan",
"last_name": "Court",
"email": "mcourt3@vistaprint.com",
"gender": "Male",
"ip_address": "27.84.15.39"
}, {
"id": 5,
"first_name": "Fiann",
"last_name": "Angrove",
"email": "fangrove4@github.com",
"gender": "Female",
"ip_address": "173.45.93.185"
}, {
"id": 6,
"first_name": "Arvin",
"last_name": "Shippey",
"email": "ashippey5@wikispaces.com",
"gender": "Male",
"ip_address": "185.32.95.105"
}, {
"id": 7,
"first_name": "Mychal",
"last_name": "Piggen",
"email": "mpiggen6@springer.com",
"gender": "Male",
"ip_address": "111.228.231.48"
}, {
"id": 8,
"first_name": "Milt",
"last_name": "Olrenshaw",
"email": "molrenshaw7@de.vu",
"gender": "Male",
"ip_address": "249.10.117.136"
}, {
"id": 9,
"first_name": "Delmer",
"last_name": "Mellows",
"email": "dmellows8@scribd.com",
"gender": "Male",
"ip_address": "63.83.20.226"
}, {
"id": 10,
"first_name": "Ryon",
"last_name": "McConnal",
"email": "rmcconnal9@pcworld.com",
"gender": "Male",
"ip_address": "93.251.12.87"
}]
"""
users = loads(data)