UTE API Wrapper 🇺🇾
THIS API NO LONGER WORKS
UTE deprecated the API that this wrapper uses on April 15th 2024. More information here.
I'll archive this repository in a few days.
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
power_factor = 0.9 # Optional, your power factor. It's almost always close to 1
ute_client = UTEClient(email, phone_number, device_id, average_cost_per_kwh, power_factor)
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 a 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.
Release files for ute-wrapper 2.5.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ute_wrapper-2.5.1.tar.gz | 19.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ute_wrapper-2.5.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 38.7 kB
Release files / ute_wrapper-2.5.1.tar.gz
| Download URL | ute_wrapper-2.5.1.tar.gz |
|---|---|
| Size | 19.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
39377d13b681eb9acd9ee13c203cbcd7e6e514870860a2faa477e091c5dcb99c
|
|
BLAKE2b-256 checksum How to use checksums |
460f1b7368c4039982aa86ce0f21ec95aa0adf144119c24a1ab54d0db51aa675
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.8.2 CPython/3.12.3 Linux/5.4.109+
|
Release files / ute_wrapper-2.5.1-py3-none-any.whl
| Download URL | ute_wrapper-2.5.1-py3-none-any.whl |
|---|---|
| Size | 19.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
46e76f17319e68806d6c26f465f2144002e7b43f47d18189d0fc58b1c53d1791
|
|
BLAKE2b-256 checksum How to use checksums |
42904f7bf72ae548b7395d8afc29f5f4cd5ac61ca16dd6852fde05eb02c1236b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.8.2 CPython/3.12.3 Linux/5.4.109+
|