Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koheron/koheron-python
Koheron Python Library
https://github.com/koheron/koheron-python
client command-line python
Last synced: 3 days ago
JSON representation
Koheron Python Library
- Host: GitHub
- URL: https://github.com/koheron/koheron-python
- Owner: Koheron
- Created: 2016-08-22T15:18:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T22:09:47.000Z (about 5 years ago)
- Last Synced: 2024-11-10T17:44:54.381Z (2 months ago)
- Topics: client, command-line, python
- Language: Python
- Size: 139 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# koheron-python
[![CircleCI](https://circleci.com/gh/Koheron/koheron-python.svg?style=shield)](https://circleci.com/gh/Koheron/koheron-python)
[![PyPI version](https://badge.fury.io/py/koheron.svg)](https://badge.fury.io/py/koheron)Koheron Python Library
### Install from a specific tag
```
pip install https://github.com/Koheron/koheron-python/zipball/v0.11.0
```
### Develop in a virtualenv```bash
virtualenv venv
source venv/bin/activate
pip install -e . # Install koheron package
```### Running tests
Testing server emission/reception:
```sh
make start_koheron_server
make test
```
This test runs locally and starts a server in background.
The tests are run in virtualenvs (for Python 2 and 3).Testing `common` driver:
```sh
make NAME=led_blinker HOST=192.168.1.100 test_common
```