Skip to main content

A library for executing shell commands in either a blocking or non-blocking way.

Project description

Overview

This library provides a utility to make executing shell commands much simpler than would be posisble using standard modules. It is built on top of the subprocess module and uses it's subprocess.Popen() function to execute a shell commands. The library allows shell commands to be executed synchronously (blocking) or asynchronously (non-blocking). It also has utility functions to collect information about the execution such as the ExitCode, the Stdout, and the Stderr.

How It Works

The Shell module provides the execute_shell_command() function as the main entry point. This fucntion accepts a number of parameters and allows the user to:

  • specify environment variables
  • specify the working directory
  • specify the shell being used
  • specify the number of retries to attempt in the event of a failure
  • specify the delay between reties
  • specify whether the execution should be blocking or non blocking

In the event of a success (zero exit code) the function will return a ShellCommandResults object. This object contains pointers to the command, the exit code, the Stdout, and the stderr.

Note: The Stdout and Stderr are strings which are decoded from the original byte stream. They will contain all the newlines that were written out to the shell.

In the event of a failure, the function will raise a ShellCommandException which extends the Exception base class. Like the ShellCommandResults object, this exception contains pointers to the command, the exit code, the Stdout, and the stderr.

Getting Started

Here is an example of the simple use case for this utility:

from ShellUtilities import Shell

shell_command_results = Shell.execute_shell_command("echo $MYVAR", env={"MYVAR": "Hello, World!"})
shell_command_results.ExitCode == 0
print(shell_command_results.StdOut) # Hello, World!
print(shell_command_results.Stderr)

And here is a more complex example of this utility running a long command asynchronously while piping the output to stdout in real time:

from ShellUtilities import Shell

# Define an async function to use when we execute the shell command
def stdout_func(stdout_line):
    print(stdout_line)
    
# Run the command and also output while the command is running
shell_command_string = r"echo 'a'; sleep 2; echo 'b'; sleep 2; echo 'c'; sleep 2; echo 'd';"
shell_command_results = Shell.execute_shell_command(shell_command_string, blocking=False, async_buffer_funcs={"stdout": [stdout_func]})
time.sleep(1)
print("hello")
shell_command_results.wait()

# The output of this main thread will be:
# a
# hello
# b
# c
# d

Change Log

2.1.15

  • Fixing bug to allow parallel execution of multiple shell commands via multiprocessing.pool.ThreadPool.
  • Adding Changelog to README.md.

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

shellutilities-2.1.15.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

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

shellutilities-2.1.15-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file shellutilities-2.1.15.tar.gz.

File metadata

  • Download URL: shellutilities-2.1.15.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for shellutilities-2.1.15.tar.gz
Algorithm Hash digest
SHA256 c8a6d7e01418f850e3d541cf44c41f47b405d2b323262d0a23e396fe166ab793
MD5 80043aac5e77db6c98814b457352a53f
BLAKE2b-256 c5d246ba29239bf37e3faddfff858c4c72fa73dbce766e86fd07278f6659d7ad

See more details on using hashes here.

File details

Details for the file shellutilities-2.1.15-py3-none-any.whl.

File metadata

File hashes

Hashes for shellutilities-2.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 9444c13187846f9f27bbd51642f292285cf777b65698e956b8323e034f5e0f1e
MD5 eb8c7f9a0b9d7e87e632045f23e6671f
BLAKE2b-256 b18c850c94253f3200fd9630c3fb91b74fbf3f8ccf30026e89b402a51a9edc4d

See more details on using hashes here.

Supported by

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