Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arduino/iot-client-py
Python client for Arduino IoT API
https://github.com/arduino/iot-client-py
Last synced: about 1 month ago
JSON representation
Python client for Arduino IoT API
- Host: GitHub
- URL: https://github.com/arduino/iot-client-py
- Owner: arduino
- License: other
- Created: 2019-08-20T11:23:01.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T13:07:09.000Z (4 months ago)
- Last Synced: 2024-09-17T13:11:38.058Z (about 2 months ago)
- Language: Python
- Homepage: https://www.arduino.cc/reference/en/iot/api/
- Size: 1.45 MB
- Stars: 23
- Watchers: 7
- Forks: 12
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arduino iot-api Python client
## Requirements
* Python 3.7+
## Installation
You can install the package directly from Github (you may need to run `pip` with
`sudo`):```sh
pip install arduino-iot-client
```## Getting Started
### Authentication
The client requires a valid access token, you can use `requests-oauthlib` to get
one, to install the library do:```sh
pip install requests-oauthlib
```After installing the library you can use this Python code to get a token:
```python
from oauthlib.oauth2 import BackendApplicationClient
from requests_oauthlib import OAuth2Sessionoauth_client = BackendApplicationClient(client_id=YOUR_CLIENT_ID)
token_url = "https://api2.arduino.cc/iot/v1/clients/token"oauth = OAuth2Session(client=oauth_client)
token = oauth.fetch_token(
token_url=token_url,
client_id=YOUR_CLIENT_ID,
client_secret=YOUR_CLIENT_SECRET,
include_client_id=True,
audience="https://api2.arduino.cc/iot"
)print(token.get("access_token"))
```In case of organization access, you can add organization identifier specifying required header:
```python
org_id=""
token = oauth.fetch_token(
token_url=token_url,
client_id=YOUR_CLIENT_ID,
client_secret=YOUR_CLIENT_SECRET,
include_client_id=True,
audience="https://api2.arduino.cc/iot",
headers={"X-Organization":org_id}
)print(token.get("access_token"))
```Once you get a token, you can create an instance of the iot-api client:
```python
import iot_api_client as iot
from iot_api_client.rest import ApiException
from iot_api_client.configuration import Configuration
import iot_api_client.apis.tags.devices_v2_api as deviceApi# configure and instance the API client
client_config = Configuration(host="https://api2.arduino.cc/iot")
client_config.access_token = YOUR_ACCESS_TOKEN
client = iot.ApiClient(client_config)# as an example, interact with the devices API
devices_api = deviceApi.DevicesV2Api(client)try:
devices = devices_api.devices_v2_list()
if devices.response.status==200:
for device in devices.body:
print("Device ("+device["id"]+"): "+device["name"])
except ApiException as e:
print("Got an exception: {}".format(e))
```In case of organization access, you can specify organization identifier in this way:
```python
client = iot.ApiClient(client_config,header_name="X-Organization",header_value=org_id)
```For a working example, see [the example folder](https://github.com/arduino/iot-client-py/tree/master/example/main.py) in this repo.
## How to get Arduino IoT Cloud Client Credentials
You can generate Arduino IoT Cloud Client Credentials in `API Keys` section in the [IoT Cloud](https://app.arduino.cc/api-keys):
### Step 1
![IoT Cloud](img/api_step1.png)
### Step 2
![IoT Cloud](img/api_step2.png)
### Step 3
![IoT Cloud](img/api_step3.png)