Python Client for Comwatt API
Project description
Comwatt Python Client
Overview
The Comwatt Python Client is a Python library that provides a convenient way to interact with the Comwatt API. It allows you to authenticate users, retrieve authenticated user information, and access site and device data.
Please note that the Comwatt client is exclusively for gen4 devices: it use energy.comwatt.com/api. Versions below gen4 will not be compatible. If you're looking for the go.comwatt.com/api go to python-comwatt-client-legacy.
Features
The client currently supports the following methods:
authenticate(self, username, password): Authenticates a user with the provided username and password.get_authenticated_user(self): Retrieves information about the authenticated user.get_sites(self): Retrieves a list of sites associated with the authenticated user.get_site_networks_ts_time_ago(self, site_id, measure_kind = "VIRTUAL_QUANTITY", aggregation_level = "HOUR", aggregation_type = "SUM", time_ago_unit = "DAY", time_ago_value = 1): Retrieves the time series data for the networks of a specific site, based on the provided parameters.get_site_consumption_breakdown_time_ago(self, site_id, aggregation_level = "HOUR", time_ago_unit = "DAY", time_ago_value = 1)Retrieves the consumption breakdown data for a specific site, based on the provided parameters.get_devices(self, site_id): Retrieves a list of devices for the specified site.get_device_ts_time_ago(self, device_id, measure_kind = "FLOW", aggregation_level = "HOUR", aggregation_type = "MAX", time_ago_unit = "DAY", time_ago_value = "1"): Retrieves the time series data for a specific device, based on the provided parameters.get_device(self, device_id): Retrieves information about a specific device.put_device(self, device_id, payload): Updates a specific device with the provided payload.
Installation
You can install the Comwatt Python Client using pip. Run the following command:
pip install comwatt-client
Usage
Here's a simple example of how to use the Comwatt Python Client:
from comwatt.client import ComwattClient
# Create a Comwatt client instance
client = ComwattClient()
# Authenticate the user
client.authenticate('username', 'password')
# Get information about the authenticated user
user_info = client.get_authenticated_user()
print(user_info)
# Get a list of sites associated with the authenticated user
sites = client.get_sites()
print(sites)
# Get time series data for the networks of a specific site
networks_time_series_data = client.get_site_networks_ts_time_ago(sites[0]['id'])
print(networks_time_series_data)
# Get the consumption breakdown data for a specific site, based on the provided parameters.
consumption_breakdown_data = client.get_site_consumption_breakdown_time_ago(sites[0]['id'])
print(consumption_breakdown_data)
# Get a list of devices for a specific site
devices = client.get_devices(sites[0]['id'])
print(devices)
# Get time series data for a specific device
time_series_data = client.get_device_ts_time_ago(devices[0]['id'])
print(time_series_data)
# Set the control mode of a specific device to MANUL
device = client.get_device(devices[0]['id'])
device['configuration']['controlMode'] = 'MANUAL'
client.put_device(device['id'], device)
# Switch the POWER_SWITCH capacity
for feature in device['features']:
for capacity in feature['capacities']:
if capacity.get('capacity', {}).get('nature') == "POWER_SWITCH":
capacity_id = capacity['capacity']['id']
client.switch_capacity(capacity_id, False)
client.switch_capacity(capacity_id, True)
Make sure to replace 'username', 'password' with the actual values for your Comwatt account.
Contributing
Contributions to the Comwatt Python Client are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the GitHub repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file comwatt_client-0.2.3-py3-none-any.whl.
File metadata
- Download URL: comwatt_client-0.2.3-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bdcc28a86038f2df3f549a7c92c8dc02cb71d7491ae7e4320b46fe7eec55cfd
|
|
| MD5 |
03e5a9ad8785f797c0acd13e630cbffb
|
|
| BLAKE2b-256 |
37ba333715ed81885fe30851e49750ec2a092fff0bc87b6bfb71585fc0f10dd9
|