File: location_data.py

package info (click to toggle)
python-crownstone-cloud 1.4.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: python: 1,126; makefile: 4
file content (72 lines) | stat: -rw-r--r-- 1,785 bytes parent folder | download
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
location_data_init = [
    {
        "name": "my_awesome_location_1",
        "uid": 1,
        "icon": "c1-tvSetup2",
        "id": "my_awesome_location_id_1",
        "sphereId": "my_awesome_sphere_id",
        "createdAt": "date_created",
        "updatedAt": "date_updated"
    },
    {
        "name": "my_awesome_location_2",
        "uid": 2,
        "icon": "c1-foodWine",
        "id": "my_awesome_location_id_2",
        "sphereId": "my_awesome_sphere_id",
        "createdAt": "date_created",
        "updatedAt": "date_updated"
    },
    {
        "name": "my_awesome_location_3",
        "uid": 3,
        "icon": "c1-bed",
        "id": "my_awesome_location_id_3",
        "sphereId": "my_awesome_sphere_id",
        "createdAt": "date_created",
        "updatedAt": "date_updated"
    }
]

location_data_removed = [
    {
        "name": "my_awesome_location_1",
        "uid": 1,
        "icon": "c1-tvSetup2",
        "id": "my_awesome_location_id_1",
        "sphereId": "my_awesome_sphere_id",
        "createdAt": "date_created",
        "updatedAt": "date_updated"
    },
    {
        "name": "my_awesome_location_3",
        "uid": 3,
        "icon": "c1-bed",
        "id": "my_awesome_location_id_3",
        "sphereId": "my_awesome_sphere_id",
        "createdAt": "date_created",
        "updatedAt": "date_updated"
    }
]

presence_data = [
    {
        "userId": "i_am_awesome_id",
        "locations": [
            "my_awesome_location_id_1",
            "my_awesome_location_id_2",
        ]
    },
    {
        "userId": "you_are_awesome_id",
        "locations": [
            "my_awesome_location_id_3",
        ]
    },
    {
        "userId": "we_are_awesome_id",
        "locations": [
            "my_awesome_location_id_2",
        ]
    }
]