You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a working example, see [the example folder](https://github.com/arduino/iot-client-py/tree/master/example/main.py) in this repo.
71
99
72
100
## How to get Arduino IoT Cloud Client Credentials
73
101
74
-
You can generate Arduino IoT Cloud Client Credentials in the `ARDUINO API` section in the [IoT Cloud things section](https://create.arduino.cc/iot/things):
102
+
You can generate Arduino IoT Cloud Client Credentials in `API Keys` section in the [IoT Cloud](https://app.arduino.cc/api-keys):
Provides a set of endpoints to manage Arduino IoT Cloud **Devices**, **Things**, **Properties** and **Timeseries**. This API can be called just with any HTTP Client, or using one of these clients: * [Javascript NPM package](https://www.npmjs.com/package/@arduino/arduino-iot-client) * [Python PYPI Package](https://pypi.org/project/arduino-iot-client/) * [Golang Module](https://github.com/arduino/iot-client-go) # noqa: E501
7
+
8
+
"""
9
+
10
+
importfrozendict
11
+
fromiot_api_client.schemasimport*
12
+
13
+
classDecodeUtils(object):
14
+
15
+
defdecode_value(self, value):
16
+
"""
17
+
Decode value from API provided DynamicSchema object to its supported subclass (like Decimal, dictionary, boolean, string)
0 commit comments