Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tafkas/kostalpikopy
A package for working with a Piko Inverter from Kostal
https://github.com/tafkas/kostalpikopy
kostal piko-inverter python
Last synced: about 2 months ago
JSON representation
A package for working with a Piko Inverter from Kostal
- Host: GitHub
- URL: https://github.com/tafkas/kostalpikopy
- Owner: Tafkas
- License: mit
- Created: 2014-08-24T22:16:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T08:03:54.000Z (about 5 years ago)
- Last Synced: 2024-11-01T00:40:34.005Z (about 2 months ago)
- Topics: kostal, piko-inverter, python
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 8
- Watchers: 2
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
# PikoPy
This package is for working with a Piko Inverter from [Kostal](http://www.kostal-solar-electric.com/)[![Code Climate](https://codeclimate.com/github/Tafkas/KostalPikoPy/badges/gpa.svg)](https://codeclimate.com/github/Tafkas/KostalPikoPy)
[![PyPI version](https://badge.fury.io/py/pikopy.svg)](https://badge.fury.io/py/pikopy)## 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
```bash
$ 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()