1
0
Fork 0
Python library for Anker Solix API
Go to file
Thomas Luther 2fe38393b8 Update README.md 2024-01-30 15:05:47 +01:00
api initial release 2024-01-30 12:58:09 +01:00
examples initial release 2024-01-30 12:58:09 +01:00
.gitattributes Initial commit 2024-01-30 12:50:40 +01:00
LICENSE initial release 2024-01-30 12:58:09 +01:00
README.md Update README.md 2024-01-30 15:05:47 +01:00
energy_csv.py initial release 2024-01-30 12:58:09 +01:00
export_system.py initial release 2024-01-30 12:58:09 +01:00
solarbank_monitor.py initial release 2024-01-30 12:58:09 +01:00
test_api.py initial release 2024-01-30 12:58:09 +01:00

README.md

Solarbank E1600 Logo

Anker Solix API

github licence python badge

This is an experimental Python library for Anker Solix Power devices (Solarbank, Inverter etc).

🚨 This is by no means an official Anker API. 🚨

🚨 It can break at any time, or API request can be removed/added/changed and break some of the endpoint methods used in this API.🚨

Python Versions

The library is currently supported on

  • Python 3.11
  • Python 3.12

Required libraries

pip install cryptography
pip install aiohttp

Anker Account Information

Because of the way the Anker Solix API works, one account with email/password cannot be used for the Anker mobile App and this API in parallel. The Anker Cloud allows only one request token per account at any time. Each new authentication request by a client will create a new token and drop a previous token. Therefore usage of this API may kick out your account login in the mobile app. However, starting with Anker mobile app release 2.0, you can share your defined system(s) with 'family members'. Therefore it is recommended to create a second Anker account with a different email address and share your defined system(s) with the second account. Attention: A shared account is only a member of the shared system, and as such currently has no permissions to access or query device details of the shared system. Therefore an API homepage query will neither display any data for a shared account. However, a shared account can receive API scene/site details of shared systems (App system = API site), which is equivalent to what is displayed in the mobile app on the home screen for the selected system.

Usage

Everything starts with an: aiohttp ClientSession:

import asyncio
from aiohttp import ClientSession
import logging, json

_LOGGER: logging.Logger = logging.getLogger(__name__)

async def main() -> None:
    """Create the aiohttp session and run the example."""
    async with ClientSession() as websession:
        """put your code here, example"""
        myapi = api.API("username@domain.com","password","de",websession, _LOGGER)
        await myapi.update_sites()
        await myapi.update_device_details()
        print("System Overview:")
        print(json.dumps(myapi.sites, indent=2))
        print("Device Overview:")
        print(json.dumps(myapi.devices, indent=2))

"""run async main"""
if __name__ == '__main__':
    try:
        asyncio.run(main())
    except Exception as err:
        print(f'{type(err)}: {err}')

The API class provides 2 main methods:

  • API.update_sites() to query overview data for all accessible sites and store data in API dictionaries API.sites and API.devices for quick access. This method could be run in regular intervals (30s or more) to fetch new data of the systems
  • API.update_device_details() to query further settings for the device serials as found in the sites query. This method should be run less frequently since this will mostly fetch various device configuration settings and needs multiple queries. It currently is developped for Solarbank devices only, further device types such as Inverters or Power Stations could be added once example data is available.

Check out test_api.py and other python executable tools that may help to leverage and explore the API for your Anker power system. The subfolder examples contains json files with anonymized responses of the export_system.py module giving you an idea of how various API responses look like. (Note that the Solarbank was switched off when the data were pulled, so some fields may be empty) Those json files can also be used to develop/debug the API for system constellations not available to the developper.

API Tools

test_api.py

Example exec module that can be used to explore and test API methods or direct enpoint requests with parameters.

export_system.py

Example exec module to use the Anker API for export of defined system data and device details. This module will prompt for the Anker account details if not pre-set in the header. Upon successfull authentication, you can specify a subfolder for the exported JSON files received as API query response, defaulting to your nick name Optionally you can specify whether personalized information in the response data should be randomized in the files, like SNs, Site IDs, Trace IDs etc. You can review the response files afterwards. They can be used as examples for dedicated data extraction from the devices. Optionally the API class can use the json files for debugging and testing on various system outputs.

solarbank_monitor.py

Example exec module to use the Anker API for continously querying and displaying important solarbank parameters This module will prompt for the Anker account details if not pre-set in the header. Upon successfull authentication, you will see the solarbank parameters displayed and refreshed at reqular interval. Note: When the system owning account is used, more details for the solarbank can be queried and displayed. Attention: During executiion of this module, the used account cannot be used in the Anker App since it will be kicked out on each refresh.

energy_csv.py

Example exec module to use the Anker API for export of daily Solarbank Energy Data. This method will prompt for the Anker account details if not pre-set in the header. Then you can specify a start day and the number of days for data extraction from the Anker Cloud. Note: The Solar production and Solarbank discharge can be queried across the full range. The solarbank charge however can be queried only as total for an interval (e.g. day). Therefore when solarbank charge data is also selected for export, an additional API query per day is required. The received daily values will be exported into a csv file.

Contributing

github contributors last commit Community Discussion

  1. Check for open features/bugs or initiate a discussion on one.
  2. Fork the repository.
  3. Install the dev environment: make init.
  4. Enter the virtual environment: source ./venv/bin/activate
  5. Code your new feature or bug fix.
  6. Write a test that covers your new functionality.
  7. Update README.md with any new documentation.
  8. Run tests and ensure 100% code coverage: make coverage
  9. Ensure you have no linting errors: make lint
  10. Ensure you have typed your code correctly: make typing
  11. Submit a pull request!

Acknowledgements / Credits

Showing Your Appreciation

If you like this project, please give it a star on GitHub