github jasonacox/pypowerwall v0.7.1
v0.7.1 - Tesla Cloud Mode

latest releases: v0.15.10, v0.15.9, v0.15.8...
2 years ago

What's Changed

  • Localize PowerFlow Animation by @jasonacox in #58
  • Added new API function to compute estimated backup time remaining on the battery: get_time_remaining()
  • Simulate Powerwall Energy Gateway via Tesla Cloud API calls. In cloudmode API calls to pypowerwall APIs will result in calls made to the Tesla API to fetch the data. Tesla Cloud Option by @jasonacox and @mcbirse in #59

Cloud Mode Setup - Use pypowerwall to fetch your Tesla Owners API Token

python3 -m pypowerwall setup

# Token and site information stored in .pypowerwall.auth and .pypowerwall.site

Cloud Mode Code Example

import pypowerwall

pw = pypowerwall.Powerwall(email="email@example.com",cloudmode=True)

pw.power()
# Output: {'site': 2977, 'solar': 1820, 'battery': -3860, 'load': 937}

pw.poll('/api/system_status/soe')
# Output: '{"percentage": 26.403205103271222}'

Full Changelog: v0.6.3...v0.7.1

Don't miss a new pypowerwall release

NewReleases is sending notifications on new releases.