Metadata-Version: 2.4
Name: bfg-maputil
Version: 0.5.1
Summary: Threaded map for lists, pandas Series/DataFrames with index and progress
Author-email: leizha <8961794+leizha@users.noreply.github.com>
Requires-Python: >=3.10
Requires-Dist: pandas
Requires-Dist: tqdm
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

## maputil

Concurrent map for lists, pandas Series, and DataFrames. Preserves index and shows a progress bar.

```python
from maputil import map2

map2(lambda x: x + 1, [10, 20, 30], concurrency=4)
```
