KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
FusionSolar
★ 68
Open GitHub ↗
Python client for Huawei FusionSolar API
Download README (.md)
Explore Similar Repositories
AnoGAN-pytorch
:
Pytorch implementation of "Unsupervised Anomaly Detection with Generative Adversarial Networks to Guide Marker Discovery"
fastapi-async-mongodb
:
Simple example with FastAPI + MongoDB
udmi
:
Universal Device Management Interface (UDMI) provides a high-level specification for the management and operation of physical IoT systems.
mybot
:
No description available.
topanswers
:
Main TopAnswers Platform (database&application)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
FusionSolar
?
Download (.md)
# FusionSolar Python client for Huawey FusionSolar API ## Example usage ```python from fusionsolar import Client, PandasClient import pandas as pd date = pd.Timestamp('20200402', tz='Europe/Brussels') with PandasClient(user_name=user, system_code=password) as client: sl = client.get_station_list() station_code = sl['data'][0]['stationCode'] df = client.get_kpi_day(station_code=station_code, date=date) print(df) ```