File: README.md

package info (click to toggle)
iottycloud 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 294; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 733 bytes parent folder | download
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

![iotty Logo](https://iotty.it/cdn/shop/files/logo-iotty_100x@2x.png)

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
```