Starter Demo
A minimal example showing the basics of data processing.
This demo walks through the most basic usage of the package.
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.