Reporting API client for Python
Project description
Frequenz Reporting API Client
Introduction
Reporting API client for Python
Supported Platforms
The following platforms are officially supported (tested):
- Python: 3.11
- Operating System: Ubuntu Linux 20.04
- Architectures: amd64, arm64
Contributing
If you want to know how to build this project and contribute to it, please check out the Contributing Guide.
Usage
Please also refer to examples for more detailed usage.
Installation
# Choose the version you want to install
VERSION=0.6.0
pip install frequenz-client-reporting==$VERSION
Initialize the client
from datetime import datetime
from frequenz.client.common.metric import Metric
from frequenz.client.reporting import ReportingApiClient
# Change server address if needed
SERVICE_ADDRESS = "reporting.api.frequenz.com:443"
API_KEY = open('api_key.txt').read().strip()
client = ReportingApiClient(service_address=SERVICE_ADDRESS, key=API_KEY)
Besides the microgrid_id, component_ids, and metrics, start, and end time,
you can also set the sampling period for resampling using the resolution
parameter.
For example, to resample data every 15 minutes, use a resolution
of 900 seconds. The default is 1 second.
Query metrics for a single microgrid and component:
data = [
sample async for sample in
client.list_single_component_data(
microgrid_id=1,
component_id=100,
metrics=[Metric.AC_ACTIVE_POWER, Metric.AC_REACTIVE_POWER],
start_dt=datetime.fromisoformat("2024-05-01T00:00:00"),
end_dt=datetime.fromisoformat("2024-05-02T00:00:00"),
resolution=1,
)
]
Query metrics for multiple microgrids and components
# Set the microgrid ID and the component IDs that belong to the microgrid
# Multiple microgrids and components can be queried at once
microgrid_id1 = 1
component_ids1 = [100, 101, 102]
microgrid_id2 = 2
component_ids2 = [200, 201, 202]
microgrid_components = [
(microgrid_id1, component_ids1),
(microgrid_id2, component_ids2),
]
data = [
sample async for sample in
client.list_microgrid_components_data(
microgrid_components=microgrid_components,
metrics=[Metric.AC_ACTIVE_POWER, Metric.AC_REACTIVE_POWER],
start_dt=datetime.fromisoformat("2024-05-01T00:00:00"),
end_dt=datetime.fromisoformat("2024-05-02T00:00:00"),
resolution=1,
)
]
Optionally convert the data to a pandas DataFrame
import pandas as pd
df = pd.DataFrame(data)
print(df)
Command line client tool
The package contains a command-line tool that can be used to request data from the reporting API.
reporting-cli \
--url localhost:4711 \
--key=$(<api_key.txt)
--mid 42 \
--cid 23 \
--metrics AC_ACTIVE_POWER AC_REACTIVE_POWER \
--start 2024-05-01T00:00:00 \
--end 2024-05-02T00:00:00 \
--format csv
In addition to the default CSV format the data can be output as individual samples or in dict
format.
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 frequenz-client-reporting-0.7.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0cbdb161eeb024af5956fb75fd90c8f26f58711edf8cf0bba44e7a0e5508760 |
|
MD5 | 0788ad2d4423b5c76b2768ebfb040916 |
|
BLAKE2b-256 | 87229f9769c13f2739cfe601564c02f3bcae738882b6787526f12713094ff9aa |
Hashes for frequenz_client_reporting-0.7.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 735286c76b273dc38ddc0f558fc885f1107d81868a6d39abbdc4cb0343dbae8f |
|
MD5 | 1eaa5f03ab9e0be8558174a11e32d54f |
|
BLAKE2b-256 | b7c91720b45f96ae2b715d49961792a2bea816c624b51c1fa753d9dc973795fa |