Skip to main content

Open IoE

Project description

Open IoE

Open IoE is a simple IoT platform to operate IoT devices.

There are two options available,

  1. API creation and Consumption (REST APIs)
  2. Python Library (Client)

1. API Creation for IoT Device and Its Consumption

Users are expected to take these steps,

  1. Add device using Link <Add Device>
  2. (Optional) Verify device data or API using Link <Verify Device>
  3. Embed the API in your application using Client Code/API

Visit the OpenIoE 1.0 web portal at https://v3.openioe.in

API List:

NoAPIDescriptionTypeExample
1showvalueTo get hardware value from web service.http get
<endpoint>/showvalue/2/433
2updatevalueUpdate the hardware value passed as a parameterhttp get
<endpoint>/updatevalue/2/433/2
3showjsonTo get hardware JSON from web service.http get
<endpoint>/showjson/2/433
4updatejsonUpdate the hardware JSON passed as parameterhttp post
<endpoint>/updatejson/2/433 <Data>
5showxmlTo get hardware XML file from web service.http get
<endpoint>/showxml/2/433
6updatexmlUpdate the hardware XML passed as parameterhttp post
<endpoint>/updatexml/2/433 <Data>

2. Python Library

Users are expected to take these steps,

  1. Install Python Library
    pip install openioe
  2. Write the client code using the following methods

Method List:

NoMethodDescriptionExample
1ReadAPITo read the sensor data from multiple nodes
from openioe.openioe_apis import *
oi=openioe_apis()
oi.UserIDPinAPIKeys=[[2, 433], [3, 986]]
SensorData,ResposeCode=oi.ReadAPI()
print(SensorData)
print(ResposeCode)
2WriteAPITo modify the control signal at multiple nodes
from openioe.openioe_apis import *
oi=openioe_apis()
oi.UserIDPinAPIKeys=[[2, 433], [3, 986]]
<p>oi.Data=[1,2]
Confirmation,ResposeCode=oi.ReadAPI()
print(Confirmation)
print(ResposeCode)
3DeveloperTo display the developer information
from openioe.openioe_apis import *
oi=openioe_apis()
oi.Developer()


Developer Information

Dr. Venkataswamy R

venkataswamy.r@gmail.com

https://venkataswamy.in

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openioe-0.1.1.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

openioe-0.1.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page