├── .DS_Store ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── doc └── README ├── examples ├── InstanceConstructor.py ├── InstanceConstructorWeather.py ├── MinimalServer.py ├── TestCreateFromJSON.py └── nspNotificationPublisher.py ├── iottoolkit ├── __init__.py ├── core │ ├── Agent.py │ ├── Description.py │ ├── LinkFormatProxy.py │ ├── ObservableProperty.py │ ├── Observers.py │ ├── PropertyOfInterest.py │ ├── README │ ├── RESTfulResource.py │ ├── SmartObject.py │ └── __init__.py ├── interfaces │ ├── CoapObjectService.py │ ├── HttpObjectService.py │ ├── README │ ├── __init__.py │ ├── favicon.ico │ └── restlite │ │ ├── LICENSE │ │ ├── README │ │ ├── __init__.py │ │ ├── restObject.py │ │ └── restlite.py └── modules │ ├── Agent.py │ ├── Observers.py │ └── hypercat.py ├── lwm2m ├── CapsuleListenerLwm2m.py ├── InstanceConstructorLwm2m.py ├── MdsNotificationDemo.py ├── MdsNotificationSubscribePush.py └── NespressoDemo.py ├── old ├── CoapTest.py ├── WeatherSensorHttpCoap.py ├── WeatherSensorHttpXively.py ├── WeatherSensorLocalMQTTBridge.py ├── WeatherSensorMQTTGateway.py ├── WeatherSensorMQTTHttpCoapBridge.py ├── WeatherSensorMQTTSubscriber.py ├── WeatherSensorMQTTXively.py ├── WeatherSensorTest.py └── mqttTest.py └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | iot-toolkit.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/doc/README -------------------------------------------------------------------------------- /examples/InstanceConstructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/examples/InstanceConstructor.py -------------------------------------------------------------------------------- /examples/InstanceConstructorWeather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/examples/InstanceConstructorWeather.py -------------------------------------------------------------------------------- /examples/MinimalServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/examples/MinimalServer.py -------------------------------------------------------------------------------- /examples/TestCreateFromJSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/examples/TestCreateFromJSON.py -------------------------------------------------------------------------------- /examples/nspNotificationPublisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/examples/nspNotificationPublisher.py -------------------------------------------------------------------------------- /iottoolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iottoolkit/core/Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/Agent.py -------------------------------------------------------------------------------- /iottoolkit/core/Description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/Description.py -------------------------------------------------------------------------------- /iottoolkit/core/LinkFormatProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/LinkFormatProxy.py -------------------------------------------------------------------------------- /iottoolkit/core/ObservableProperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/ObservableProperty.py -------------------------------------------------------------------------------- /iottoolkit/core/Observers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/Observers.py -------------------------------------------------------------------------------- /iottoolkit/core/PropertyOfInterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/PropertyOfInterest.py -------------------------------------------------------------------------------- /iottoolkit/core/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/README -------------------------------------------------------------------------------- /iottoolkit/core/RESTfulResource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/RESTfulResource.py -------------------------------------------------------------------------------- /iottoolkit/core/SmartObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/core/SmartObject.py -------------------------------------------------------------------------------- /iottoolkit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iottoolkit/interfaces/CoapObjectService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/CoapObjectService.py -------------------------------------------------------------------------------- /iottoolkit/interfaces/HttpObjectService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/HttpObjectService.py -------------------------------------------------------------------------------- /iottoolkit/interfaces/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/README -------------------------------------------------------------------------------- /iottoolkit/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iottoolkit/interfaces/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/favicon.ico -------------------------------------------------------------------------------- /iottoolkit/interfaces/restlite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/restlite/LICENSE -------------------------------------------------------------------------------- /iottoolkit/interfaces/restlite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/restlite/README -------------------------------------------------------------------------------- /iottoolkit/interfaces/restlite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iottoolkit/interfaces/restlite/restObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/restlite/restObject.py -------------------------------------------------------------------------------- /iottoolkit/interfaces/restlite/restlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/interfaces/restlite/restlite.py -------------------------------------------------------------------------------- /iottoolkit/modules/Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/modules/Agent.py -------------------------------------------------------------------------------- /iottoolkit/modules/Observers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/modules/Observers.py -------------------------------------------------------------------------------- /iottoolkit/modules/hypercat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/iottoolkit/modules/hypercat.py -------------------------------------------------------------------------------- /lwm2m/CapsuleListenerLwm2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/lwm2m/CapsuleListenerLwm2m.py -------------------------------------------------------------------------------- /lwm2m/InstanceConstructorLwm2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/lwm2m/InstanceConstructorLwm2m.py -------------------------------------------------------------------------------- /lwm2m/MdsNotificationDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/lwm2m/MdsNotificationDemo.py -------------------------------------------------------------------------------- /lwm2m/MdsNotificationSubscribePush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/lwm2m/MdsNotificationSubscribePush.py -------------------------------------------------------------------------------- /lwm2m/NespressoDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/lwm2m/NespressoDemo.py -------------------------------------------------------------------------------- /old/CoapTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/CoapTest.py -------------------------------------------------------------------------------- /old/WeatherSensorHttpCoap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorHttpCoap.py -------------------------------------------------------------------------------- /old/WeatherSensorHttpXively.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorHttpXively.py -------------------------------------------------------------------------------- /old/WeatherSensorLocalMQTTBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorLocalMQTTBridge.py -------------------------------------------------------------------------------- /old/WeatherSensorMQTTGateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorMQTTGateway.py -------------------------------------------------------------------------------- /old/WeatherSensorMQTTHttpCoapBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorMQTTHttpCoapBridge.py -------------------------------------------------------------------------------- /old/WeatherSensorMQTTSubscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorMQTTSubscriber.py -------------------------------------------------------------------------------- /old/WeatherSensorMQTTXively.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorMQTTXively.py -------------------------------------------------------------------------------- /old/WeatherSensorTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/WeatherSensorTest.py -------------------------------------------------------------------------------- /old/mqttTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/old/mqttTest.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connectIOT/iottoolkit/HEAD/setup.py --------------------------------------------------------------------------------