Skip to content

Python SDK for IoT device to work with IFRA IoT Platform

Notifications You must be signed in to change notification settings

ifraiot/ifra-python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published