1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# iottycloud: a Python library to interact with iotty CloudApi

A Python library to interact with iotty CloudApi. To use this library in one of your projects, you must first become our Partner. Please [send us an email](mailto:support@iotty.com).
We're working on a public version of the CloudApi documentation. Stay tuned!
# Getting Started
To install the library, simply use pip
```
$ pip install iottycloud
```
# Test and pylint
You can run the test suite with pytest:
```
$ cd tests
$ python3 -m pytest
```
You can check the correctness of your python code using pylint, as usual:
```
$ cd src
$ pylint iottycloud
```
|