## batch_process()


Process items in batches.


Usage


``` python
batch_process(
    items,
    chunk_size=100,
)
```


items The items to process. chunk_size The number of items per batch.


list The processed results.

> **Tip: Tip**
>
> Use chunk_size=50 for memory-constrained systems.
