Retrieve data collected by your Reposit Power Home Energy Management System
- Python 2.7
- Python 3.5+ preferred
pip install reposit
from reposit.auth import RPConnection
from reposit import Controller, Account
user = RPConnection('username', 'password')
account = Account(user)
user_keys = account.get_user_keys()
controller = Controller(user, user_key=user_keys[0])
print(controller.battery_capacity)

