Kyanit API is part of the Kyanit ecosystem. See https://github.com/kyanit-project/kyanit for an introduction to Kyanit.
Kyanit API is a Python API for interfacing and interacting with Kyanit.
The core Kyanit module, flashed into an ESP8266 board.
A stylish, triangle-shaped ESP8266-based board built around an ESP-12F module, the official Kyanit controller board.
Command-line utility for interacting with Kyanit.
This repo. Python API for interaction with Kyanit from Python code. (It is used by Kyanit CTL.)
Install the latest released version with:
pip install kyanitapi
To get the latest development version, clone this repository, and within the repository root, run:
python setup.py bdist_wheel
This will create Python wheel distribution package in the dist
directory. Install it using pip
with:
pip install --force-reinstall dist/kyanitapi-<version>-py3-none-any.whl
(Replace <version>
with the one that has been generated by setup.py
.)
To switch back to the latest released version, use:
pip install --force-reinstall kyanitapi==<version>
Where <version>
is the latest released version.
For a detailed documentation of the API, head to https://kyanit.eu/docs/kyanit-api
Copyright (C) 2020 Zsolt Nagy
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.