Skip to main content

Drift Python Client

Project description

Drift Python Client

Python Client to access data of Devices on Drift Platform

Description

Drift Python Client is a high level library to get current or historical data with minimal knowledge about Drift infrastructure.

Installing

pip install https://github.com/panda-official/DriftPythonClient.git

Usage Example

import os

from drift_client import DriftClient

drift_client = DriftClient("10.0.0.153", os.getenv("DRIFT_PASSWORD"))
# Download list of history
packages = drift_client.get_list(
    ["acc-5"],
    ["2022-01-01 00:00:00", "2022-01-02 00:00:00"],
)

for topic in packages:
    print(topic, "->", packages[topic])
    for path in packages[topic]:
        data = drift_client.get_item(path).as_np(scale_factor=2)
        print(data)

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

drift-python-client-0.1.1.tar.gz (13.3 kB view hashes)

Uploaded Source

Built Distribution

drift_python_client-0.1.1-py3-none-any.whl (14.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