pikopy

A package for working with a Piko Inverter from Kostal


Keywords
python, kostal, piko, inverter, photovoltaic, solar, piko-inverter
License
GPL-2.0+
Install
pip install pikopy==0.9.0

Documentation

PikoPy

This package is for working with a Piko Inverter from Kostal

Code Climate PyPI version

Where has it been tested?

PikoPy has been tested with a Kostal Piko 5.5. It should work with other Kostal inverters as well since they provide the same interface.

Requirements

  • Python
  • lxml
  • httplib2
  • httpretty (for testing)

Installing

$ pip install pikopy

Usage

import pikopy

#create a new piko instance
p = Piko('host', 'username', 'password')

#get current power
print p.get_current_power()

#get voltage from string 1
print p.get_string1_voltage()