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 drift-python-client

If you need the latest version from GitHub:

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

Usage Example

import os
from datetime import datetime

from drift_client import DriftClient

drift_client = DriftClient("10.0.0.153", os.getenv("DRIFT_PASSWORD"))
# Download list of history

packages = drift_client.get_package_names(
    "acc-5",
    datetime.strptime("2022-01-01 00:00:00", "%Y-%m-%d %H:%M:%S"),
    datetime.strptime("2022-01-02 00:00:00", "%Y-%m-%d %H:%M:%S")
)

print(packages)
for path in packages:
    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.2.0.tar.gz (14.0 kB view hashes)

Uploaded Source

Built Distribution

drift_python_client-0.2.0-py3-none-any.whl (15.2 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