Metadata-Version: 2.4
Name: kolluri_parallel
Version: 0.0.1
Summary: Parallel for-loop implementation
Project-URL: Homepage, https://github.com/ManojKolluri/kolluri_parallel
Project-URL: Issues, https://github.com/ManojKolluri/kolluri_parallel
Author-email: Manoj Kolluri <manojkolluri33@gmail.com>
License-File: LICENSE.txt
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# Parallel Loop Library

Execute for-loops in parallel with ease!

## Installation
```bash
pip install -e .  # For local development
```

## Usage
```python
from kolluri_parallel import parallel_for

def process_item(item):
    # Your computation here
    return (item, item ** 2)

results = parallel_for(
    iterable=range(1, 6),
    func=process_item,
    max_workers=3
)
```

## Features
- Thread/process pool executors
- Error handling
- Simple API