4
4
import iot_api_client as iot
5
5
from iot_api_client .rest import ApiException
6
6
from iot_api_client .configuration import Configuration
7
- import iot_api_client .apis .tags .things_v2_api as thingApi
8
- import iot_api_client .apis .tags .properties_v2_api as propertiesApi
9
- import iot_api_client .apis .tags .series_v2_api as seriesApi
7
+ from iot_api_client .api import ThingsV2Api , PropertiesV2Api , SeriesV2Api
8
+ from iot_api_client .models import *
10
9
11
10
import csv
12
11
from time import sleep
13
12
14
- HOST = "https://api2.arduino.cc/iot "
13
+ HOST = "https://api2.arduino.cc"
15
14
TOKEN_URL = "https://api2.arduino.cc/iot/v1/clients/token"
16
15
17
16
client_id = "<client-id>" # get a valid one from your Arduino account
18
17
client_secret = "<client-secret-id>" # get a valid one from your Arduino account
19
- org_id = "<organization id - optional>"
20
- extract_from = "2024-06-03T00:00:00Z"
21
- extract_to = "2024-06-06T00:00:00Z"
18
+
19
+ org_id = "<organization-id>" # (Optional) get a valid one from your Arduino account
20
+ extract_from = "2024-10-03T00:00:00Z"
21
+ extract_to = "2024-10-06T00:00:00Z"
22
22
filename = "dump.csv"
23
23
24
24
def get_token ():
@@ -29,7 +29,7 @@ def get_token():
29
29
client_id = client_id ,
30
30
client_secret = client_secret ,
31
31
include_client_id = True ,
32
- audience = HOST ,
32
+ audience = "https://api2.arduino.cc/iot" ,
33
33
headers = {"X-Organization" :org_id }
34
34
)
35
35
return token
@@ -45,67 +45,59 @@ def init_client(token):
45
45
return client
46
46
47
47
48
-
49
- def dump_property_data (series_api ,thing_name ,prop_name ,thing_id ,prop_id ):
48
+ def dump_property_data (client ,thing_name ,prop_name ,thing_id ,prop_id ):
50
49
sleep (1 )
51
50
print (f"Extracting property { thing_name } .{ prop_name } " )
52
- body = {
53
- 'resp_version' :1 ,
54
- 'requests' : [ {'q' : "property." + prop_id ,'from' :extract_from ,'to' :extract_to } ]
55
- }
56
- timeseries = series_api .series_v2_batch_query_raw (body )
51
+ series_api = SeriesV2Api (client )
52
+ propertyRequest = BatchQueryRawRequestMediaV1 (q = "property." + prop_id , var_from = extract_from , to = extract_to )
53
+ seriesRequest = BatchQueryRawRequestsMediaV1 (resp_version = 1 , requests = [propertyRequest ])
54
+ timeseries = series_api .series_v2_batch_query_raw (seriesRequest )
57
55
58
- if timeseries .response .status == 200 :
59
- data = timeseries .body ['responses' ]
60
- for s in data :
61
- times = s ['times' ]
62
- values = s ['values' ]
56
+ try :
57
+ for s in timeseries .responses :
63
58
i = 0
64
- while i < len (times ):
65
- writer .writerow ([thing_name ,prop_name ,times [i ],values [i ]])
59
+ while i < len (s . times ):
60
+ writer .writerow ([thing_name ,prop_name ,s . times [i ],s . values [i ]])
66
61
i = i + 1
67
- else :
68
- print (f"Unable to extract data for property { prop_id } " )
69
-
62
+
63
+ except ApiException as e :
64
+ print ("Exception n series extraction: {}" .format (e ))
65
+
70
66
71
67
def get_things_and_props ():
72
68
token = get_token ()
73
69
client = init_client (token )
74
- things_api = thingApi .ThingsV2Api (client )
75
- properties_api = propertiesApi .PropertiesV2Api (client )
76
- series_api = seriesApi .SeriesV2Api (client )
70
+ things_api = ThingsV2Api (client )
71
+ properties_api = PropertiesV2Api (client )
77
72
todolist = [] #use this to track extractions to do
73
+
78
74
try :
79
75
things = things_api .things_v2_list ()
80
-
81
- if things .response .status == 200 :
82
- for thing in things .body :
83
- sleep (5 )
84
- tname = thing ["name" ]
85
- print (f"Found thing: { tname } " )
86
- todo = {}
87
- todo ["thing_id" ]= thing ["id" ]
88
- todo ["thing_name" ]= tname
89
- properties = properties_api .properties_v2_list (path_params = {'id' : thing ["id" ]})
90
- for property in properties .body :
91
- id = property ["id" ]
92
- name = property ["name" ]
93
- ptype = property ["type" ]
94
- value = property ["last_value" ]
95
- print (f"Property: { name } ::{ ptype } ={ value } " )
96
- if ptype == "FLOAT" or ptype == "INT" :
97
- todo ["prop_id" ]= id
98
- todo ["prop_name" ]= name
99
- todolist .append (todo .copy ())
100
- else :
101
- print ("IoT API returned status " + things .response .status )
76
+ for thing in things :
77
+ sleep (1 )
78
+ tname = thing .name
79
+ print (f"Found thing: { tname } " )
80
+ todo = {}
81
+ todo ["thing_id" ]= thing .id
82
+ todo ["thing_name" ]= tname
83
+ properties = properties_api .properties_v2_list (id = thing .id , show_deleted = False )
84
+ for property in properties :
85
+ name = property .name
86
+ ptype = property .type
87
+ value = property .last_value
88
+ print (f"Property: { name } ::{ ptype } ={ value } " )
89
+ if ptype == "FLOAT" or ptype == "INT" :
90
+ todo ["prop_id" ]= property .id
91
+ todo ["prop_name" ]= name
92
+ todolist .append (todo .copy ())
93
+
102
94
except ApiException as e :
103
95
print ("Exception: {}" .format (e ))
104
96
105
97
while len (todolist )!= 0 :
106
98
todo = todolist .pop ()
107
99
try :
108
- dump_property_data (series_api , todo ["thing_name" ],todo ["prop_name" ],todo ["thing_id" ],todo ["prop_id" ])
100
+ dump_property_data (client , todo ["thing_name" ], todo ["prop_name" ], todo ["thing_id" ], todo ["prop_id" ])
109
101
except ApiException as e :
110
102
print ("Exception: {}" .format (e ))
111
103
0 commit comments