├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── docs ├── index.md ├── quickstart.md └── todo ├── mkdocs.yml ├── parallel ├── __init__.py ├── errors.py ├── exceptions.py ├── models.py ├── process.py └── utils.py ├── poetry.lock ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── base.py ├── test_async_map ├── __init__.py ├── test_async_map_dict_parameters.py └── test_async_map_sequence_parameters.py ├── test_decorator ├── __init__.py ├── test_async_map.py ├── test_map.py └── test_par.py ├── test_executors ├── __init__.py └── thread │ ├── __init__.py │ └── test_thread_executor.py ├── test_map ├── __init__.py ├── test_map_dict_parameter.py └── test_map_sequence_parameter.py ├── test_models ├── __init__.py └── test_parallel_job_parse_args.py ├── test_par ├── __init__.py └── test_par_sequence_parameters.py ├── test_split.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/docs/todo -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/__init__.py -------------------------------------------------------------------------------- /parallel/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/errors.py -------------------------------------------------------------------------------- /parallel/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/exceptions.py -------------------------------------------------------------------------------- /parallel/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/models.py -------------------------------------------------------------------------------- /parallel/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/process.py -------------------------------------------------------------------------------- /parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/parallel/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/test_async_map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_async_map/test_async_map_dict_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_async_map/test_async_map_dict_parameters.py -------------------------------------------------------------------------------- /tests/test_async_map/test_async_map_sequence_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_async_map/test_async_map_sequence_parameters.py -------------------------------------------------------------------------------- /tests/test_decorator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_decorator/test_async_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_decorator/test_async_map.py -------------------------------------------------------------------------------- /tests/test_decorator/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_decorator/test_map.py -------------------------------------------------------------------------------- /tests/test_decorator/test_par.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_decorator/test_par.py -------------------------------------------------------------------------------- /tests/test_executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_executors/thread/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_executors/thread/test_thread_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_executors/thread/test_thread_executor.py -------------------------------------------------------------------------------- /tests/test_map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_map/test_map_dict_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_map/test_map_dict_parameter.py -------------------------------------------------------------------------------- /tests/test_map/test_map_sequence_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_map/test_map_sequence_parameter.py -------------------------------------------------------------------------------- /tests/test_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_models/test_parallel_job_parse_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_models/test_parallel_job_parse_args.py -------------------------------------------------------------------------------- /tests/test_par/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_par/test_par_sequence_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_par/test_par_sequence_parameters.py -------------------------------------------------------------------------------- /tests/test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_split.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiagobasulto/parallel/HEAD/tests/test_utils.py --------------------------------------------------------------------------------