Skip to main content
A node can emit notifications using the wob-api. Example:
@wob.execute()
def execute(self):
    wob.status.waiting("Summarising...", timeout=3000, color="#22dd22", icon="Check")
    < do stuff >
    wob.status.clear()
The following methods are available for the status object:
  • waiting(self, name, icon="", color="", timeout=None, is_global=False)
  • info(self, name, icon="", color="", timeout=None, is_global=False)
  • progress(self, name, value, max_value=0, icon="", color="", timeout=None, is_global=False)
  • clear(self, is_global=False)