https://github.com/koheron/koheron-python
Koheron Python Library
https://github.com/koheron/koheron-python
client command-line python
Last synced: 4 months ago
JSON representation
Koheron Python Library
- Host: GitHub
- URL: https://github.com/koheron/koheron-python
- Owner: Koheron
- Created: 2016-08-22T15:18:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T22:09:47.000Z (over 5 years ago)
- Last Synced: 2025-01-08T01:58:32.045Z (6 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
[](https://circleci.com/gh/Koheron/koheron-python)
[](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
```