ifra-sdk

Client library of Python, connect to IFRA IIoT Platform.


Keywords
ifra, iot, mqtt, iotplatform, python, raspberry-pi
Install
pip install ifra-sdk==1.0.6

Documentation

ifra-python-sdk

Install Package with pip

pip install ifra-sdk

Example Code

import ifra_sdk.client as ifra
import time


# Create new client
client = ifra.IfraSDK("<CHANNEL>","<DEVICE_ID>","<DEVICE_SECRET>")

counter=0
while True:
    
    #Append counter sensor
    client.addSensor("counter",'times', counter)

    #Send data
    client.send()

    #Sleep 1 sec
    time.sleep(1)  

    #Increase counter +1
    counter=counter+1