-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtest_data.py
More file actions
24 lines (23 loc) · 1.35 KB
/
Copy pathtest_data.py
File metadata and controls
24 lines (23 loc) · 1.35 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
PEOPLE = [{"id": 1, "name": "BOB", "prop1": "Some", "prop2": "Value"},
{"id": 2, "name": "GWYNNETH", "prop1": "Some", "prop2": "Value"},
{"id": 3, "name": "JAMES", "prop1": "Some", "prop2": "Value"},
{"id": 4, "name": "MICHELLE", "prop1": "Some", "prop2": "Value"},
{"id": 5, "name": "NED", "prop1": "Some", "prop2": "Value"},
{"id": 6, "name": "GRACE", "prop1": "Some", "prop2": "Value"},
{"id": 7, "name": "JOHN", "prop1": "Some", "prop2": "Value"},
{"id": 8, "name": "MIRIAM", "prop1": "Some", "prop2": "Value"},
{"id": 9, "name": "STUART", "prop1": "Some", "prop2": "Value"},
{"id": 10, "name": "PETE", "prop1": "Some", "prop2": "Value"}
]
RELATIONSHIPS = [{"from": 1, "to": 2, "weight": "0.8"},
{"from": 1, "to": 3, "weight": "0.5"},
{"from": 1, "to": 7, "weight": "0.5"},
{"from": 3, "to": 4, "weight": "1.0"},
{"from": 3, "to": 5, "weight": "0.1"},
{"from": 3, "to": 6, "weight": "0.1"},
{"from": 2, "to": 4, "weight": "0.8"},
{"from": 2, "to": 5, "weight": "1.0"},
{"from": 1, "to": 8, "weight": "0.9"},
{"from": 8, "to": 9, "weight": "0.9"},
{"from": 9, "to": 10, "weight": "0.9"},
]