Skip to main content

Execution helpers for simplified usage of subprocess and ssh.

Project description

exec-helpers

https://travis-ci.org/python-useful-helpers/exec-helpers.svg?branch=master https://coveralls.io/repos/github/python-useful-helpers/exec-helpers/badge.svg?branch=master Documentation Status https://img.shields.io/pypi/v/exec-helpers.svg https://img.shields.io/pypi/pyversions/exec-helpers.svg https://img.shields.io/pypi/status/exec-helpers.svg https://img.shields.io/github/license/python-useful-helpers/exec-helpers.svg

Execution helpers for simplified usage of subprocess and ssh. Why another subprocess wrapper and why no clear paramiko?

Historically paramiko offers good ssh client, but with specific limitations: you can call command with timeout, but without receiving return code, or call command and wait for return code, but without timeout processing.

In the most cases, we are need just simple SSH client with comfortable API for calls, calls via SSH proxy and checking return code/stderr. This library offers this functionality with connection memorizing, deadlock free polling and friendly result objects (with inline decoding of YAML, JSON, binary or just strings). In addition this library offers the same API for subprocess calls, but with specific limitation: no parallel calls (for protection from race conditions).

Pros:

Python 2.7
Python 3.4
Python 3.5
Python 3.6
Python 3.7
PyPy
PyPy3 3.5+

This package includes:

  • SSHClient - historically the first one helper, which used for SSH connections and requires memorization due to impossibility of connection close prediction. Several API calls for sFTP also presents.

  • SSHAuth - class for credentials storage. SSHClient does not store credentials as-is, but uses SSHAuth for it. Objects of this class can be copied between ssh connection objects, also it used for execute_through_host.

  • Subprocess - subprocess.Popen wrapper with timeouts, polling and almost the same API, as SSHClient (except specific flags, like cwd for subprocess and get_tty for ssh).

  • ExecResult - class for execution results storage. Contains exit code, stdout, stderr and getters for decoding as JSON, YAML, string, bytearray and brief strings (up to 7 lines).

  • ExitCodes - enumerator for standard Linux exit codes. BASH return codes (broduced from signal codes) also available.

Usage

SSHClient

Basic initialization of SSHClient can be done without construction of specific objects:

client = exec_helpers.SSHClient(host, username="username", password="password")

If ssh agent is running - keys will be collected by paramiko automatically, but if keys are in specific location - it should be loaded manually and provided as iterable object of paramiko.RSAKey.

For advanced cases or re-use of credentials, SSHAuth object should be used. It can be collected from connection object via property auth.

Creation from scratch:

auth = exec_helpers.SSHAuth(
    username='username',  # type: typing.Optional[str]
    password='password',  # type: typing.Optional[str]
    key=None,  # type: typing.Optional[paramiko.RSAKey]
    keys=None,  # type: typing.Optional[typing.Iterable[paramiko.RSAKey]],
    key_filename=None,  # type: typing.Union[typing.List[str], str, None]
    passphrase=None,  # type: typing.Optional[str]
)

Key is a main connection key (always tried first) and keys are alternate keys. Key filename is afilename or list of filenames with keys, which should be loaded. Passphrase is an alternate password for keys, if it differs from main password. If main key now correct for username - alternate keys tried, if correct key found - it became main. If no working key - password is used and None is set as main key.

Context manager is available, connection is closed and lock is released on exit from context.

Subprocess

No initialization required. Context manager is available, subprocess is killed and lock is released on exit from context.

Base methods

Main methods are execute, check_call and check_stderr for simple executing, executing and checking return code and executing, checking return code and checking for empty stderr output. This methods are almost the same for SSHCleint and Subprocess, except specific flags.

result = helper.execute(
    command,  # type: str
    verbose=False,  # type: bool
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    **kwargs
)
result = helper.check_call(
    command,  # type: str
    verbose=False,  # type: bool
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    error_info=None,  # type: typing.Optional[str]
    expected=None,  # type: typing.Optional[typing.Iterable[int]]
    raise_on_err=True,  # type: bool
    **kwargs
)
result = helper.check_stderr(
    command,  # type: str
    verbose=False,  # type: bool
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    error_info=None,  # type: typing.Optional[str]
    raise_on_err=True,  # type: bool
)

If no STDOUT or STDERR required, it is possible to disable this FIFO pipes via **kwargs with flags open_stdout=False and open_stderr=False.

The next command level uses lower level and kwargs are forwarded, so expected exit codes are forwarded from check_stderr. Implementation specific flags are always set via kwargs.

If required to mask part of command from logging, log_mask_re attribute can be set global over instance or providden with command. All regex matched groups will be replaced by ‘<*masked*>’.

result = helper.execute(
    command="AUTH='top_secret_key'; run command",  # type: str
    verbose=False,  # type: bool
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    log_mask_re=r"AUTH\s*=\s*'(\w+)'"  # type: typing.Optional[str]
)

result.cmd will be equal to AUTH=’<*masked*>’; run command

ExecResult

Execution result object has a set of useful properties:

  • cmd - Command

  • exit_code - Command return code. If possible to decode using enumerators for Linux -> it used.

  • stdin -> str. Text representation of stdin.

  • stdout -> typing.Tuple[bytes]. Raw stdout output.

  • stderr -> typing.Tuple[bytes]. Raw stderr output.

  • stdout_bin -> bytearray. Binary stdout output.

  • stderr_bin -> bytearray. Binary stderr output.

  • stdout_str -> six.text_types. Text representation of output.

  • stderr_str -> six.text_types. Text representation of output.

  • stdout_brief -> six.text_types. Up to 7 lines from stdout (3 first and 3 last if >7 lines).

  • stderr_brief -> six.text_types. Up to 7 lines from stderr (3 first and 3 last if >7 lines).

  • stdout_json - STDOUT decoded as JSON.

  • stdout_yaml - STDOUT decoded as YAML.

  • timestamp -> typing.Optional(datetime.datetime). Timestamp for received exit code.

SSHClient specific

SSHClient commands support get_pty flag, which enables PTY open on remote side. PTY width and height can be set via kwargs, dimensions in pixels are always 0x0.

Possible to call commands in parallel on multiple hosts if it’s not produce huge output:

results = SSHClient.execute_together(
    remotes,  # type: typing.Iterable[SSHClient]
    command,  # type: str
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    expected=None,  # type: typing.Optional[typing.Iterable[int]]
    raise_on_err=True  # type: bool
)
results  # type: typing.Dict[typing.Tuple[str, int], exec_result.ExecResult]

Results is a dict with keys = (hostname, port) and and results in values. By default execute_together raises exception if unexpected return code on any remote.

For execute through SSH host can be used execute_through_host method:

result = client.execute_through_host(
    hostname,  # type: str
    command,  # type: str
    auth=None,  # type: typing.Optional[SSHAuth]
    target_port=22,  # type: int
    timeout=1 * 60 * 60,  # type: typing.Optional[int]
    verbose=False,  # type: bool
    get_pty=False,  # type: bool
)

Where hostname is a target hostname, auth is an alternate credentials for target host.

SSH client implements fast sudo support via context manager: Commands will be run with sudo enforced independently from client settings for normal usage:

with client.sudo(enforce=True):
    ...

Commands will be run without sudo independently from client settings for normal usage:

with client.sudo(enforce=False):
    ...

“Permanent client setting”:

client.sudo_mode = mode  # where mode is True or False

SSH Client supports sFTP for working with remote files:

with client.open(path, mode='r') as f:
    ...

For fast remote paths checks available methods:

  • exists(path) -> bool

>>> conn.exists('/etc/passwd')
True
  • stat(path) -> paramiko.sftp_attr.SFTPAttributes

>>> conn.stat('/etc/passwd')
<SFTPAttributes: [ size=1882 uid=0 gid=0 mode=0o100644 atime=1521618061 mtime=1449733241 ]>
>>> str(conn.stat('/etc/passwd'))
'-rw-r--r--   1 0        0            1882 10 Dec 2015  ?'
  • isfile(path) -> bool

>>> conn.isfile('/etc/passwd')
True
  • isdir(path) -> bool

>>> conn.isdir('/etc/passwd')
False

Additional (non-standard) helpers:

  • mkdir(path: str) - execute mkdir -p path

  • rm_rf(path: str) - execute rm -rf path

  • upload(source: str, target: str) - upload file or from source to target using sFTP.

  • download(destination: str, target: str) - download file from target to destination using sFTP.

Subprocess specific

Kwargs set properties:

  • cwd - working directory.

  • env - environment variables dict.

Testing

The main test mechanism for the package exec-helpers is using tox. Available environments can be collected via tox -l

CI systems

For code checking several CI systems is used in parallel:

  1. Travis CI: is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it’s publishes coverage on coveralls.

  2. coveralls: is used for coverage display.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

exec-helpers-1.3.4.tar.gz (40.1 kB view details)

Uploaded Source

Built Distributions

exec_helpers-1.3.4-py2-none-any.whl (39.9 kB view details)

Uploaded Python 2

exec_helpers-1.3.4-cp37-cp37m-manylinux1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m

exec_helpers-1.3.4-cp37-cp37m-manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m

exec_helpers-1.3.4-cp36-cp36m-manylinux1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m

exec_helpers-1.3.4-cp36-cp36m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.6m

exec_helpers-1.3.4-cp35-cp35m-manylinux1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.5m

exec_helpers-1.3.4-cp35-cp35m-manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.5m

exec_helpers-1.3.4-cp34-cp34m-manylinux1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.4m

exec_helpers-1.3.4-cp34-cp34m-manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.4m

File details

Details for the file exec-helpers-1.3.4.tar.gz.

File metadata

File hashes

Hashes for exec-helpers-1.3.4.tar.gz
Algorithm Hash digest
SHA256 6dba1b55aded60a95ef7761f7dbe52ed0b8af9e0abe9b26097b579b4da10217f
MD5 4e9c945575ced4b043ea5c93685cd1b7
BLAKE2b-256 feafd68aedcf2c6bd4fc9d4343002837059a1a7e4e632d9f7e34e49650b2d417

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-py2-none-any.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-py2-none-any.whl
Algorithm Hash digest
SHA256 34125fa1980b283533518f618a3cecc9fff6248b74d2bf095f6fb93e16cc618f
MD5 6e39e587fe190d10c4fd60fa5535462d
BLAKE2b-256 48e587de2b912c279b8a2b5874a7c4698efd1ce76860c5087da8c02e5441ce2f

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f092f23416979b855acbe6e4731dc469abe8e3d752b638ab008e92a8bfa330ff
MD5 b3c914cc1b1754de08513d0e600b649b
BLAKE2b-256 bac39f14de4c75673da77a1cabc8afdaaf5b54bf015cf942e4cddf799a20e522

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 db657f9b25bd7f7144d421033d41d43a05334eaee7acb04eb8f7642599cb1066
MD5 42d5d4959f9b62eeb08ffb79d54cec2c
BLAKE2b-256 f529691b52bcbf19bbf4e662f16edc9eacdf8f4784910f4b208e0704196fbdb4

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e806243c8e9c969c4ad4e941086b6e2a5cc35bc7c45825892b70ddb27f920a3b
MD5 d7493fbac093cf6d327f03d052569d5c
BLAKE2b-256 cc006b1f1ce0c43dda9b009b72fbeb4df262ab10eaba305e4d9ca68a86ea8e93

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 38cb3cc7cffef2c17319bac1c2d927a1bfde67151d5986eb4407624e8bd2a839
MD5 27461f1aabbbbe9db56be6082cd3cb75
BLAKE2b-256 895a03af5222ae0a57a3eb35d117accb3c7f3de5ef0a0e781ef62751612f62bf

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8fb4b0a24080e11041ba872b505c2521c4930a91c458b6f68b9d3736b164daed
MD5 f98c4d708da928c3c7a6fb3b5f5ed26f
BLAKE2b-256 5af3b406d5cf0bed81d023eae82e2746c7517599b37ccb802ce6195cd23e4d4b

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e30c0f87bba37e47ce2906473cbdd56494abafd24cc67ee38c9e7524674a56c
MD5 4329e2cdb966a456a703a03ee423ee2e
BLAKE2b-256 60741b4ebc2b22ada43a025c21f78a09df783ad6930557bf861d93e048b11d31

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c613cb2858957ee0b59b7bd616702bf2b0fbfbfc7fd66482315fd2ac3aa9e583
MD5 c0a99b984f564775e69ec4534154d877
BLAKE2b-256 982a58272f26be6e0c963ff9cd65f8fce01ee96a738fb97b124df196d1558fb9

See more details on using hashes here.

File details

Details for the file exec_helpers-1.3.4-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for exec_helpers-1.3.4-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 656580861356c0e58e15c7a565f075002dbf010cfc359fc1011f32da89d5ad67
MD5 09faf8bb9c9b1034b7421d44a7293406
BLAKE2b-256 6f7b28133b83ffa31872befc5529b56dfdf3fd2cb50ef101503161db42456abe

See more details on using hashes here.

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