Skip to main content

Official Python SDK for TagoIO

Project description


TagoIO

NOTE: This version (4.x.x) is still in development. You can access the current (3.x.x) version in tago-io/tago-sdk-python.

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


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.0.6.tar.gz (28.0 kB view hashes)

Uploaded Source

Built Distribution

tagoio_sdk-4.0.6-py3-none-any.whl (38.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page