Skip to content

Commit 7b1b148

Browse files
committed
Fix code example
1 parent 5ce3035 commit 7b1b148

File tree

4 files changed

+47
-55
lines changed

4 files changed

+47
-55
lines changed

example/main.py

+43-51
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
import iot_api_client as iot
55
from iot_api_client.rest import ApiException
66
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 *
109

1110
import csv
1211
from time import sleep
1312

14-
HOST = "https://api2.arduino.cc/iot"
13+
HOST = "https://api2.arduino.cc"
1514
TOKEN_URL = "https://api2.arduino.cc/iot/v1/clients/token"
1615

1716
client_id="<client-id>" # get a valid one from your Arduino account
1817
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"
2222
filename="dump.csv"
2323

2424
def get_token():
@@ -29,7 +29,7 @@ def get_token():
2929
client_id=client_id,
3030
client_secret=client_secret,
3131
include_client_id=True,
32-
audience=HOST,
32+
audience="https://api2.arduino.cc/iot",
3333
headers={"X-Organization":org_id}
3434
)
3535
return token
@@ -45,67 +45,59 @@ def init_client(token):
4545
return client
4646

4747

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):
5049
sleep(1)
5150
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)
5755

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:
6358
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]])
6661
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+
7066

7167
def get_things_and_props():
7268
token = get_token()
7369
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)
7772
todolist=[] #use this to track extractions to do
73+
7874
try:
7975
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+
10294
except ApiException as e:
10395
print("Exception: {}".format(e))
10496

10597
while len(todolist)!=0:
10698
todo = todolist.pop()
10799
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"])
109101
except ApiException as e:
110102
print("Exception: {}".format(e))
111103

example/requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ oauthlib
22
requests-oauthlib
33
arduino-iot-client
44
typing_extensions
5-
frozendict ~= 2.3.4
6-
wheel
5+
frozendict ~= 2.3.4

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
urllib3 >= 1.25.3, < 3.0.0
22
python_dateutil >= 2.8.2
3-
pydantic >= 2
43
typing-extensions >= 4.7.1
4+
pydantic >= 2.9.2
5+
python-dateutil >= 2.8.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
long_description = f.read()
1010

1111
NAME = "arduino-iot-client"
12-
REQUIRES = ["urllib3 >= 1.25", "python_dateutil >= 2.8.2", "pydantic >= 2", "typing-extensions >= 4.7.1"]
12+
REQUIRES = ["urllib3 >= 1.25", "python_dateutil >= 2.8.2", "pydantic >= 2.9.2", "typing-extensions >= 4.7.1"]
1313

1414
setup(
1515
name=NAME,

0 commit comments

Comments
 (0)