Skip to main content

Comap Smart Home public API python module

Project description

COMAP Smart Home public API

Python module to control and retrieve data for COMAP Smart Home products.

Install

To install comapsmarthome-prublic-api run :

pip install comapsmarthome-public-api

Usage example

from comapsmarthome_public_api.client_auth import ClientAuth
from comapsmarthome_public_api.measurement_service import MeasurementsService

auth = ClientAuth()
measurements = MeasurementsService(auth)

dt_from = '2020-10-01T09:30+01:00'
dt_to = '2020-10-01T10:30+01:00'
serial_number = 'aa**********'
data = measurements.get_measurements(dt_from, dt_to, serial_number=serial_number, measurements=['inside_temperature'])
dates = [d['time'] for d in data]
temperatures = [d['inside_temperature'] for d in data]

Credentials

To access COMAP Smart Home product through the API, username and password need to be saved under the environment variables COMAP_SMART_HOME_USERNAME and COMAP_SMART_HOME_PASSWORD.

  • COMAP_SMART_HOME_USERNAME: COMAP Smart Home user email address
  • COMAP_SMART_HOME_PASSWORD: COMAP Smart Home user password

Requirements

  • Python >=3.6
  • requests and dateutil modules
  • COMAP Smart Home user account

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

comapsmarthome_public_api-0.0.5-py3-none-any.whl (9.5 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