Python
Latest Release
Setup
Add Signal-Application-SDK as a dependency to requirements.txt
signal-application-python-sdk==<latest>Install dependencies
python setup.py installInitialize SDK
self.app = SignalApp()
self.app.initialize(self.onConfigChange, self.onEvent)Provide a callback method to get notified when a configuration change is requested
def onConfigChange(self, config):Provide a callback method to get notified when an event is received from event bus
Call next to forward the event to the next node
Sample usage

Last updated