Skip to main content

map based easy paralell processing tool

Project description

mulmap

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

Overview

  • map based easy paralell processing tool
  • description is under construction.

Usage

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引数関数を別々の引数で並列で動作させる。
  • 説明は執筆中です

使用例

import time
import mulmap

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mulmap-0.0.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

mulmap-0.0.0-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page