Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 459 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 459 Bytes

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