Skip to main content

Run command lines via (GNU) parallel

Project description

parallelprocs

Run commands via GNU Parallel or something like it.

Synopsis

$ cat test.py
#!/usr/bin/env python

from parallelprocs import run

try:
    run(['echo foo', 'echo bar', 'echo baz'], verbose=True)
except Exception as e:
    print(e)
$ ./test.py
Running job (# jobs = 3)
bar
baz
foo

Description

The module exposes a single function run that takes the following arguments:

Required Arguments:

commands [str]: commands

Keyword Options

  • parallel (str): path to "parallel", default "which('parallel')"
  • num_procs (int): num of concurrent processes, default "0" to use all CPUs
  • verbose (bool): print messages to sys.stderr, default "False"
  • halt (int): number of failed jobs to trigger halt, default "0" for no halt

Author

Ken Youens-Clark kyclark@gmail.com

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

parallelprocs-0.1.5.tar.gz (2.6 kB view hashes)

Uploaded Source

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