Metadata-Version: 2.1
Name: mulmap
Version: 0.0.0
Summary: map based easy paralell processing tool
Home-page: https://github.co.jp/
Author: bib_inf
Author-email: contact.bibinf@gmail.com
License: CC0 v1.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Description-Content-Type: text/markdown
Requires-Dist: ezpip
Requires-Dist: sout
Requires-Dist: joblib

# mulmap

下の方に日本語の説明があります

## Overview
- map based easy paralell processing tool
- description is under construction.

## Usage
```python
import time
import mulmap

def func(i):
	time.sleep(2)
	return i ** 2

res = mulmap(func, [1, 2, 3])
print(res)	# -> [1,4,9]
```

## 概要
- mapの形式の並列処理。1引数関数を別々の引数で並列で動作させる。
- 説明は執筆中です

## 使用例
```python
import time
import mulmap

def func(i):
	time.sleep(2)
	return i ** 2

res = mulmap(func, [1, 2, 3])
print(res)	# -> [1,4,9]
```


