Metadata-Version: 2.1
Name: mindconnectiot
Version: 0.1.5
Summary: Wrapper around the MindConnect IoT Extention.
Home-page: https://gitlab.com/Addono/mindconnect-iot-extention-python
Author: Adriaan Knapen
Author-email: hi@aknapen.nl
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: paho-mqtt
Requires-Dist: feedparser
Requires-Dist: html2text

A small client to connect with MindConnect IoT using the MindConnect IoT Extension

## How to use
First initialise a new `MindConnectIot` object for your device:
```python
from mindconnectiot import MindConnectIot

mindconnect = MindConnectIot(device_name, mindconnect_region, tenant_name, 
        mcio_extension_username, password)
```

Afterwards you can send data to the cloud, e.g. to send a measurement:
```python
mindconnect.sendMeasurement('Temperature', 'Celsius', 23.4, '*C')
```

