Reference
Top-level module for importing the Ecos class.
AsyncEcos(email=None, password=None, country=None, datacenter=None, url=None, access_token=None, refresh_token=None)
Asynchronous ECOS API client class.
This class provides methods for interacting with the ECOS API, including
authentication, retrieving user information, and managing homes. It uses
the aiohttp
library to make asynchronous HTTP requests to the API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
email
|
str | None
|
The user's email to use for authentication. |
None
|
password
|
str | None
|
The user's password to use for authentication. |
None
|
country
|
str | None
|
Reserved for future. |
None
|
datacenter
|
str | None
|
The location of the ECOS API datacenter.
Can be one of |
None
|
url
|
str | None
|
The URL of the ECOS API. If specified, |
None
|
access_token
|
str | None
|
The access token for authentication with the ECOS API. |
None
|
refresh_token
|
str | None
|
The refresh token for authentication with the ECOS API. |
None
|
Raises:
Type | Description |
---|---|
InitializationError
|
If |
Source code in src/ecactus/base.py
login(email=None, password=None)
async
Authenticate with the ECOS API using a provided email and password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
email
|
str | None
|
The user's email to use for authentication. |
None
|
password
|
str | None
|
The user's password to use for authentication. |
None
|
Raises:
Type | Description |
---|---|
AuthenticationError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_user()
async
Get user details.
Returns:
Type | Description |
---|---|
User
|
A User object. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_homes()
async
Get a list of homes.
Returns:
Type | Description |
---|---|
list[Home]
|
A list of Home objects. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_devices(home_id)
async
Get a list of devices for a home.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
home_id
|
str
|
The home ID to get devices for. |
required |
Returns:
Type | Description |
---|---|
list[Device]
|
A list of Device objects. |
Raises:
Type | Description |
---|---|
HomeDoesNotExistError
|
If the home id is not correct. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_all_devices()
async
Get a list of all the devices.
Returns:
Type | Description |
---|---|
list[Device]
|
A list of Device objects. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_today_device_data(device_id)
async
Get power metrics of the current day until now.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get power metrics for. |
required |
Returns:
Type | Description |
---|---|
PowerTimeSeries
|
Metrics of the current day until now. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_realtime_home_data(home_id)
async
Get current power for the home.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
home_id
|
str
|
The home ID to get current power for. |
required |
Returns:
Type | Description |
---|---|
PowerMetrics
|
Current metrics for the home. |
Raises:
Type | Description |
---|---|
HomeDoesNotExistError
|
If the home id is not correct. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_realtime_device_data(device_id)
async
Get current power for a device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get current power for. |
required |
Returns:
Type | Description |
---|---|
PowerMetrics
|
Current metrics for the device. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_history(device_id, period_type, start_date=None)
async
Get aggregated energy for a period.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get history for. |
required |
period_type
|
int
|
Possible value:
|
required |
start_date
|
datetime | None
|
The start date. |
None
|
Returns:
Type | Description |
---|---|
EnergyHistory
|
Data and metrics corresponding to the defined period. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
ParameterVerificationFailedError
|
If a parameter is not valid ( |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
get_insight(device_id, period_type, start_date=None)
async
Get energy metrics and statistics of a device for a period.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get data for. |
required |
period_type
|
int
|
Possible value:
|
required |
start_date
|
datetime | None
|
The start date. |
None
|
Returns:
Type | Description |
---|---|
DeviceInsight
|
Statistics and metrics corresponding to the defined period. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
ParameterVerificationFailedError
|
If a parameter is not valid ( |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/async_client.py
Ecos(email=None, password=None, country=None, datacenter=None, url=None, access_token=None, refresh_token=None)
Synchronous ECOS API client class.
This class provides methods for interacting with the ECOS API, including
authentication, retrieving user information, and managing homes. It uses
the requests
library to make HTTP requests to the API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
email
|
str | None
|
The user's email to use for authentication. |
None
|
password
|
str | None
|
The user's password to use for authentication. |
None
|
country
|
str | None
|
Reserved for future. |
None
|
datacenter
|
str | None
|
The location of the ECOS API datacenter.
Can be one of |
None
|
url
|
str | None
|
The URL of the ECOS API. If specified, |
None
|
access_token
|
str | None
|
The access token for authentication with the ECOS API. |
None
|
refresh_token
|
str | None
|
The refresh token for authentication with the ECOS API. |
None
|
Raises:
Type | Description |
---|---|
InitializationError
|
If |
Source code in src/ecactus/base.py
login(email=None, password=None)
Authenticate with the ECOS API using a provided email and password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
email
|
str | None
|
The user's email to use for authentication. |
None
|
password
|
str | None
|
The user's password to use for authentication. |
None
|
Raises:
Type | Description |
---|---|
AuthenticationError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_user()
Get user details.
Returns:
Type | Description |
---|---|
User
|
A User object. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_homes()
Get a list of homes.
Returns:
Type | Description |
---|---|
list[Home]
|
A list of Home objects. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_devices(home_id)
Get a list of devices for a home.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
home_id
|
str
|
The home ID to get devices for. |
required |
Returns:
Type | Description |
---|---|
list[Device]
|
A list of Device objects. |
Raises:
Type | Description |
---|---|
HomeDoesNotExistError
|
If the home id is not correct. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_all_devices()
Get a list of all the devices.
Returns:
Type | Description |
---|---|
list[Device]
|
A list of Device objects. |
Raises:
Type | Description |
---|---|
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_today_device_data(device_id)
Get power metrics of the current day until now.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get power metrics for. |
required |
Returns:
Type | Description |
---|---|
PowerTimeSeries
|
Metrics of the current day until now. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_realtime_home_data(home_id)
Get current power for the home.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
home_id
|
str
|
The home ID to get current power for. |
required |
Returns:
Type | Description |
---|---|
PowerMetrics
|
Current metrics for the home. |
Raises:
Type | Description |
---|---|
HomeDoesNotExistError
|
If the home id is not correct. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_realtime_device_data(device_id)
Get current power for a device.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get current power for. |
required |
Returns:
Type | Description |
---|---|
PowerMetrics
|
Current metrics for the device. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_history(device_id, period_type, start_date=None)
Get aggregated energy for a period.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get history for. |
required |
period_type
|
int
|
Possible value:
|
required |
start_date
|
datetime | None
|
The start date. |
None
|
Returns:
Type | Description |
---|---|
EnergyHistory
|
Data and metrics corresponding to the defined period. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
ParameterVerificationFailedError
|
If a parameter is not valid ( |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
get_insight(device_id, period_type, start_date=None)
Get energy metrics and statistics of a device for a period.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str
|
The device ID to get data for. |
required |
period_type
|
int
|
Possible value:
|
required |
start_date
|
datetime | None
|
The start date. |
None
|
Returns:
Type | Description |
---|---|
DeviceInsight
|
Statistics and metrics corresponding to the defined period. |
Raises:
Type | Description |
---|---|
UnauthorizedDeviceError
|
If the device is not authorized or unknown. |
ParameterVerificationFailedError
|
If a parameter is not valid ( |
UnauthorizedError
|
If the Authorization token is not valid. |
ApiResponseError
|
If the API returns a non-successful response. |
Source code in src/ecactus/client.py
ecactus.model
Data model for ECOS API.
User
Represents a user.
Attributes:
Name | Type | Description |
---|---|---|
username |
str
|
The user's username. |
nickname |
str
|
The user's nickname. |
email |
str
|
The user's email address. |
phone |
str
|
The user's phone number. |
timezone_id |
str
|
The user's time zone ID. |
timezone |
str
|
The user's time zone offset (e.g., GMT-05:00). |
timezone_name |
str
|
The user's time zone name (e.g., America/Toronto). |
datacenter_phonecode |
int
|
The user's datacenter phone code. |
datacenter |
str
|
The user's datacenter (e.g., EU). |
datacenter_host |
str
|
The user's datacenter host (e.g., https://api-ecos-eu.weiheng-tech.com). |
Home
Represents a home.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
Unique identifier for the home. |
name |
str
|
Name of the home (or |
type_int |
int
|
Type number of the home. |
longitude |
float | None
|
Longitude of the home's location, or None if not specified. |
latitude |
float | None
|
Latitude of the home's location, or None if not specified. |
device_number |
int
|
Number of devices associated with the home. |
relation_type_int |
int
|
Type number of relation for the home. |
create_time |
datetime
|
Time when the home was created. |
update_time |
datetime
|
Time when the home was last updated. |
Device
Represents a device.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
Unique identifier for the device. |
alias |
str
|
Human-readable name for the device (e.g., "My Device"). |
state_int |
int
|
Current state number of the device. |
vpp |
bool
|
VPP status. |
type_int |
int
|
Type number of the device. |
serial |
str
|
Device serial number. |
agent_id |
str
|
Unique identifier for the device's agent. |
longitude |
float
|
Longitude of the device's location. |
latitude |
float
|
Latitude of the device's location. |
device_type |
str | None
|
Unknown (e.g., "XX-XXX123"). |
master_int |
int
|
Master status number. |
PowerMetrics
Represents a single timestamped power data point.
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
datetime
|
Timestamp of the data point. |
solar |
float | None
|
Power generated by the solar panels in watts (W). |
grid |
float | None
|
To be defined (W). |
battery |
float | None
|
Power to/from the battery (W). |
meter |
float | None
|
Power measured (Negative means export to the grid, positive means import from the grid.) (W). |
home |
float | None
|
Power consumed by the home (W). |
eps |
float | None
|
Power consumed by the EPS (W). |
charge |
float | None
|
To be defined (W). |
PowerTimeSeries
Represents a series of power metrics over time.
Attributes:
Name | Type | Description |
---|---|---|
metrics |
list[PowerMetrics]
|
A list of power metrics. During initialization it can be provided as a dictionary. Example: The model validator automatically transforms this raw dict into a sorted list of PowerMetrics objects. |
find_by_timestamp(target, exact=False)
Return the PowerMetrics instance with the timestamp nearest to the target datetime (or with the exact timestamp only).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target
|
datetime
|
The target datetime to find the PowerMetrics instance for. |
required |
exact
|
bool
|
If True, only return the PowerMetrics instance with the exact timestamp. If False, return the PowerMetrics instance with the timestamp nearest to the target datetime. |
False
|
Returns:
Type | Description |
---|---|
PowerMetrics | None
|
A PowerMetrics instance corresponding to the target datetime. |
find_between(start, end)
Return a list of PowerMetrics instances with timestamps between start and end (inclusive).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start
|
datetime
|
The start datetime of the range. |
required |
end
|
datetime
|
The end datetime of the range. |
required |
Returns:
Type | Description |
---|---|
PowerTimeSeries
|
A list of PowerMetrics instances with timestamps between start and end (inclusive). |
EnergyMetric
Represents a single energy data point.
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
datetime
|
Timestamp of the data point. |
energy |
float | None
|
The measured energy value at the given timestamp. |
EnergyHistory
Represents a series of energy metrics over a period.
Attributes:
Name | Type | Description |
---|---|---|
energy_consumption |
float
|
The total energy consumption in kWh. |
solar_percent |
float
|
The percentage of energy produced by solar panels. |
metrics |
list[EnergyMetric]
|
A list of energy measurement points. During initialization it can be provided as a dictionary from the "homeEnergyDps" field. Example: The model validator automatically transforms this raw dict into a sorted list of EnergyMetric objects. |
EnergyStatistics
Represents energy statistics.
Attributes:
Name | Type | Description |
---|---|---|
consumption |
float
|
The total energy consumption (kWh). |
from_battery |
float
|
The energy consumed from battery (kWh). |
to_battery |
float
|
The energy sent to battery (kWh). |
from_grid |
float
|
The energy consumed from the grid (kWh). |
to_grid |
float
|
The energy sent to the grid (kWh). |
from_solar |
float
|
The energy produced from solar (kWh). |
eps |
float
|
To be defined. |
ConsumptionMetrics
Represents a single timestamped consumption data point.
Attributes:
Name | Type | Description |
---|---|---|
timestamp |
datetime
|
Timestamp of the data point. |
from_battery |
Annotated[float | None, Field(strict=True, ge=0, alias=fromBatteryDps)]
|
Energy consumed from battery (kWh). |
to_battery |
Annotated[float | None, Field(strict=True, ge=0, alias=toBatteryDps)]
|
Energy sent to battery (kWh). |
from_grid |
Annotated[float | None, Field(strict=True, ge=0, alias=fromGridDps)]
|
Energy consumed from the grid (kWh). |
to_grid |
Annotated[float | None, Field(strict=True, ge=0, alias=toGridDps)]
|
Energy sent to the grid (kWh). |
from_solar |
Annotated[float | None, Field(strict=True, ge=0, alias=fromSolarDps)]
|
Energy produced from solar (kWh). |
home |
Annotated[float | None, Field(strict=True, ge=0, alias=homeEnergyDps)]
|
Home energy consumption (kWh). |
eps |
Annotated[float | None, Field(strict=True, ge=0, alias=epsDps)]
|
To be defined. |
self_powered |
Annotated[float | None, Field(strict=True, ge=0, alias=selfPoweredDps)]
|
Autonomous operation (%). |
ConsumptionTimeSeries
Represents energy time series.
Attributes:
Name | Type | Description |
---|---|---|
metrics |
list[ConsumptionMetrics]
|
A list of consumption metrics. During initialization it can be provided as a dictionary. Example: The model validator automatically transforms this raw dict into a sorted list of ConsumptionMetrics objects. |
DeviceInsight
Represents various statistics and metrics.
Attributes:
Name | Type | Description |
---|---|---|
self_powered |
int
|
Autonomous operation (%). |
power_timeseries |
PowerTimeSeries | None
|
A list of power metrics. |
energy_statistics |
EnergyStatistics | None
|
Statistics of energy usage. |
energy_timeseries |
ConsumptionTimeSeries | None
|
A list of energy consumption metrics. |
ecactus.exceptions
Ecos client custom exceptions.
EcosApiError
Base exception class for all ECOS API-related errors.
InitializationError(message=None)
Raised when there is an initialization error.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str | None
|
The error message. |
None
|
AuthenticationError(message=None)
Raised when there is an authentication error.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str | None
|
The error message. |
None
|
UnauthorizedError(message=None)
Raised when there is an unauthorized error.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str | None
|
The error message. |
None
|
HomeDoesNotExistError(home_id=None)
Raised when a home does not exist.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
home_id
|
str | None
|
The home ID the error occurred for. |
None
|
UnauthorizedDeviceError(device_id=None)
Raised when a device is not authorized or unknown.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device_id
|
str | None
|
The device ID the error occurred for. |
None
|
ParameterVerificationFailedError(message=None)
Raised when a parameter verification fails.
InvalidJsonError()
Raised when the API returns invalid JSON.
ApiResponseError(code, message)
Raised when the API returns a non-successful response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
code
|
int
|
The API status code. |
required |
message
|
str
|
The error message. |
required |
HttpError(status_code, message)
Raised when an HTTP error occurs while making an API request.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
status_code
|
int
|
The HTTP status code. |
required |
message
|
str
|
The error message. |
required |