A wrapper to interact with UTE's API
Project description
UTE API Wrapper 🇺🇾
This Python package provides a convenient wrapper for interacting with the UTE (Administración Nacional de Usinas y Trasmisiones Eléctricas) API in Uruguay 🇺🇾. It allows you to retrieve various information related to your UTE account, electricity consumption, network status, and more.
Table of Contents
Installation
You can install the UTE API Wrapper using pip:
pip install ute-wrapper
Usage
Import the UTEClient
class from the package and create an instance with your UTE account details:
from ute_wrapper.ute import UTEClient
email = "your_email@example.com"
phone_number = "your_phone_number"
device_id = "your_device_id" # Optional
average_cost_per_kwh = 4.0 # Optional, your average cost per kWh in UYU
ute_client = UTEClient(email, phone_number, device_id, average_cost_per_kwh)
Available Methods
get_devices_list()
: Get a list of UTE devices associated with the account.get_account()
: Get UTE account information for the specified device ID.get_peak()
: Get UTE peak information for the specified device ID.get_network_status()
: Get UTE network status information.get_renewable_sources()
: Get the percentage of UTE renewable sources.get_historic_consumption(date_start=None, date_end=None)
: Get historic UTE consumption information within a specified date range.get_current_usage_info()
: Get current usage information for the specified device ID.get_average_price(plan)
: Get the average price for a specific UTE plan ("triple" or "doble").
Examples
Get Historic Consumption
historic_consumption = ute_client.get_historic_consumption(date_start="2023-08-01", date_end="2023-08-15")
print(historic_consumption)
Get Current Usage Info
current_usage_info = ute_client.get_current_usage_info()
print(current_usage_info)
Contributing
Contributions are welcome! If you find a bug or have a suggestion, please create an issue or submit Merge Request on Gitlab.
License
This project is licensed under the GNU General Public License, version 3.0. For more details, see LICENSE.
This project is not affiliated with UTE (Administración Nacional de Usinas y Trasmisiones Eléctricas) or its affiliates.
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 Distribution
Built Distribution
Hashes for ute_wrapper-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41a181ea89560e7dff8114a0f4a7c6d7cc2142a01d0a0a8d185e102557ef3954 |
|
MD5 | 5f9547b8c80aaf5beda2468b7d7495ec |
|
BLAKE2b-256 | 4899734acb5047c183ba71662fc7f0b65666894e5bec20a327505fc8444e9f20 |