Metadata-Version: 2.1
Name: fusionsolar
Version: 0.0.6
Summary: A Python client for Huawei FusionSolar
Home-page: https://github.com/EnergieID/fusionsolar
Author: EnergieID.be
Author-email: jan@energieid.be
License: MIT
Description: # 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)
        ```
Keywords: Huawei PV Solar FusionSolar API Python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
