Metadata-Version: 2.1
Name: ezFutures
Version: 0.0b21
Summary: Parallism made easy (and safe) with futures API
Home-page: https://github.com/mozjay0619/ezFutures
Author: Jay Kim
License: DSB 3-clause
Platform: UNKNOWN
Description-Content-Type: text/x-rst

ezFutures
=========

ezFutures is a Python parallel computation tool that provides the user API similar to that of concurrent futures, with various parallelism backends. 

Install
-------

::

	pip install ezFutures


Getting started
---------------

First, we need to import the class:

.. code:: python

	from ezFutures import ezFutures

In order to start working with ezFutures, you must instantiate the class object. The most important parameter to set is the ``n_procs`` parameter which defines the number of processes to run in parallel.

.. code:: python

	ez = ezFutures(n_procs=19)

From there, you can ``submit`` jobs in a sequential manner, just as you do with concurrent futures. However, because ezFutures default parallelism backend is not concurrent futures, merely submitting a task will not start the job. You have the option of using concurrent futures process pool as the parallelism backend (we will update documentation in the future to describe this)

.. code:: python

    def some_task(elem):
        return(elem)

    for i in range(10):
        ez.submit(some_task, i)

You can start the jobs by invoking ``results`` method, just as you would with the concurrent futures API. 

.. code:: python

    ez.results()

    # Progress: |██████████████████████████████████████████████████| 100.0% 
    # [1, 2, 7, 0, 8, 3, 5, 4, 9, 6]

The 10 tasks submitted are done in parallel asynchronously, which is why the returned results order is jumbled. 

In case there are errors, you can retrieve the stacktrace by invoking ``errors`` method.

.. code:: python

    ez.errors()

The default parallelism backend will try the tasks 3 times (configurable using ``n_retries`` parameter when initializing ezFutures) before marking the task as a "failed" task. 

