Official Python SDK for TagoIO
Project description
TagoIO - Python SDK
Official Python SDK for TagoIO
Installation
pip install tagoio-sdk
Quick Example
If you have any questions, feel free to check our Help Center
Insert Device Data
from tagoio_sdk import Device
myDevice = Device({ "token": "my_device_token" })
result = myDevice.sendData({
"variable": "temperature",
"unit": "F",
"value": 55,
"time": "2015-11-03 13:44:33",
"location": { "lat": 42.2974279, "lng": -85.628292 },
})
Edit Device Data
from tagoio_sdk import Device
myDevice = Device({"token": "my_device_token"})
result = myDevice.editData(
{
"id": "id_of_the_data_item",
"value": "123",
"time": "2022-04-01 12:34:56",
"location": {"lat": 42.2974279, "lng": -85.628292},
}
)
Development Commands
poetry install
poetry run pytest tests/
poetry run flake8 src
License
TagoIO SDK for Python is released under the Apache-2.0 License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tagoio_sdk-4.2.0.tar.gz
(29.4 kB
view hashes)
Built Distribution
tagoio_sdk-4.2.0-py3-none-any.whl
(45.1 kB
view hashes)
Close
Hashes for tagoio_sdk-4.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89ec3c58aeed5a0a17d5815c3a95873cc5cfc10d9aeb975000453a3fe692c551 |
|
MD5 | f771fad92cf15199befe1af199964665 |
|
BLAKE2b-256 | 2b9b770d0bb5baf6b803672d76c0bea329fe8d7fdda058bfe793cd517a442b4d |