> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Using wob notifications

> This guide teaches you how to use wob notifications.

A node can emit notifications using the wob-api.

Example:

```python theme={null}
@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)
