Skip to main content

concurrent-executor

PyPI

Executing multiple commands concurrently using Python asyncio

Installation

pip install concurrent-executor
# Or from the latest GitHub version
pip install git+https://github.com/DCsunset/concurrent-executor

CLI Usage

All the following tools can handle signals as follows:

  • Upon receiving one SIGINT (including keyboard interrupt) or SIGTERM, the program will send SIGTERM to all spawned processes.
  • Upon receiving more than one of them, the program will instead send SIGKILL to kill all spawned processes.

cssh

cssh is a command line tool provided by this package. It is used to executing commands concurrently on remote servers vis SSH.

Use -H or --hosts to specify the hosts to run the commands on:

cssh -H host1 host2 ... host_n -- command
# pass extra ssh options
cssh -o="-q -4" -H host1 host2 ... host_n -- command
# read hosts from file
cssh -f hosts.txt -- command
# string interpolation (to include host name in command by {0})
cssh -H host1 host2 -- command --host {0}
# pipe to stdin
echo "yes" | cssh -H host1 host2 -- command 
# Pipe file content to stdin
cssh -H host1 host2 -- command < input.txt

Note that -- is necessary to separate the options and the command. For -o/--options to work correctly, use = to prevent it from being parsed as another option.

The standard input (stdin) of the cssh process is piped to the stdin of every spawned processes.

For more details, see cssh -h.

cexec

cexec is another command line tool provided by this package. It is used to execute arbitrary shell commands concurrently using template (string interpolation in Python).

The command itself can container placeholder in strings: (See Python string interpolation for more detail.)

# The variables are a, b, c in the template command
# This command creates 3 directories and write to a file in each directory
cexec -V a b c -- "mkdir {0} && echo 1 > {0}/out"
# Read variables from a file
cexec -f vars.txt -- "mkdir {0} && echo 1 > {0}/out"
# Run different commands directly
cexec -V "cmd1" "cmd2" "cmd3" -- "{}"
# pipe to stdin
echo "yes" | cexec -V a b c -- "cat -"

For more details, see cexec -h.

Library

It can also be used as a library:

import asyncio
from concurrent_executor.executor import SshExecutor

async def main():
  hosts = ["host1", "host2"]
  executor = SshExecutor(hosts)
  # running concurrently
  await executor.run("some_command --test")

  # access stdout for all hosts (or stderr)
  async for index, out in executor.stdout:
    print(f"{host[index]}: {out}")

  # wait until all finished
  ret_codes = await executor.wait()
  
asyncio.run(main())

See more usage in concurrent_executor/cli.py.

Development

To set up the development environment, first clone this repo.

Then it's recommended to usevenv:

# suppose PWD is the root dir of the repo
python -m venv venv
# activate the environment``
source venv/bin/activate
pip install -r requirements.txt

To deactivate, run deactivate.

License

This project is licensed under AGPL-3.0. Copyright notice:

concurrent-executor
Copyright (C) 2023 DCsunset

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

Download files

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

Source Distribution

concurrent-executor-1.1.0.tar.gz (19.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

concurrent_executor-1.1.0-py3-none-any.whl (22.2 kB view details)

Uploaded Python 3

File details

Details for the file concurrent-executor-1.1.0.tar.gz.

File metadata

  • Download URL: concurrent-executor-1.1.0.tar.gz
  • Upload date:
  • Size: 19.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for concurrent-executor-1.1.0.tar.gz
Algorithm Hash digest
SHA256 ccb2631d6d762fc2679ec5d8d9bbef6d2a6b0737a58a6c9e1f3249729a8fcd3e
MD5 7366c606c46ad9f2d07fb6d84b4f3e01
BLAKE2b-256 47480ce1cdd2d20d5e23e93fde07843444e44ad90592d33e65db0ee2a52ac8a2

See more details on using hashes here.

File details

Details for the file concurrent_executor-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for concurrent_executor-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1d7f8a3904b1c80e5b4dcf87a5d4e0464cda9b60c9619d92b452f8d8aa123930
MD5 89707226c8045ca9a4877a7379cf6f7e
BLAKE2b-256 8e5c7de3eae9c65d4804d8a1af193ac863dee2c74014f8a4cc9c5e3da2dc61e8

See more details on using hashes here.

Release history Release notifications | RSS feed

1.1.2

2 files

1.1.1

2 files

This release

1.1.0 This release

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page