# Starter Demo

This demo walks through the most basic usage of the package.

``` python
from gdtest_sec_index_hero import process

result = process([1, 2, None, 3], strict=True)
print(result)  # [1, 2, 3]
```

The `strict` parameter filters out `None` values, giving you a clean list.
