Official Python SDK for TagoIO
pip install tagoio-sdkIf you have any questions, feel free to check our Help Center
from tagoio_sdk import Resources
resources = Resources()
resource.devices.sendDeviceData("myDeviceID", {
"variable": "temperature",
"unit": "F",
"value": 55,
"time": "2015-11-03 13:44:33",
"location": {"lat": 42.2974279, "lng": -85.628292},
})from tagoio_sdk import Resources
resources = Resource()
resource.devices.editDeviceData("myDeviceID", {
"id": "idOfTheRecord",
"value": "new value",
"unit": "new unit"
})uv sync --dev
uv run pytest tests/
uv run ruff check src
uv run ruff format srcTagoIO SDK for Python is released under the Apache-2.0 License
