Skip to main content

Asynchronous parallel SSH library

Project description

Asynchronous parallel SSH client library.

Run SSH commands over many - hundreds/hundreds of thousands - number of servers asynchronously and with minimal system load on the client host.

Native code based client with extremely high performance - based on libssh2 C library.

License Latest Version https://travis-ci.org/ParallelSSH/parallel-ssh.svg?branch=master https://ci.appveyor.com/api/projects/status/github/parallelssh/parallel-ssh?svg=true&branch=master https://codecov.io/gh/ParallelSSH/parallel-ssh/branch/master/graph/badge.svg https://img.shields.io/pypi/wheel/parallel-ssh.svg Latest documentation

Installation

pip install parallel-ssh

Usage Example

See documentation on read the docs for more complete examples.

Run uname on two remote hosts in parallel with sudo.

from __future__ import print_function

from pssh.clients import ParallelSSHClient

hosts = ['myhost1', 'myhost2']
client = ParallelSSHClient(hosts)

output = client.run_command('uname')
for host, host_output in output.items():
    for line in host_output.stdout:
        print(line)
Output:
Linux
Linux

Native client

Starting from version 1.2.0, a new client is supported in parallel-ssh which offers much greater performance and reduced overhead than the current default client.

The new client is based on libssh2 via the ssh2-python extension library and supports non-blocking mode natively. Binary wheel packages with libssh2 included are provided for Linux, OSX and Windows platforms and all supported Python versions.

See this post for a performance comparison of the available clients.

To make use of this new client, ParallelSSHClient can be imported from pssh.clients.native instead. Their respective APIs are almost identical.

The new client will become the default and will replace the current pssh.pssh_client in a new major version of the library - 2.0.0.

The paramiko based client will become an optional install via pip extras, available under pssh.clients.miko.

For example:

from pprint import pprint
from pssh.clients.native import ParallelSSHClient

hosts = ['myhost1', 'myhost2']
client = ParallelSSHClient(hosts)

output = client.run_command('uname')
for host, host_output in output.items():
    for line in host_output.stdout:
        print(line)

See documentation for a feature comparison of the two clients.

Native Code Client Features

  • Highest performance and least overhead of any Python SSH libraries

  • Thread safe - makes use of native threads for blocking calls like authentication

  • Natively non-blocking utilising libssh2 via ssh2-python - no monkey patching of the Python standard library

  • Significantly reduced overhead in CPU and memory usage

Exit codes

Once either standard output is iterated on to completion, or client.join(output) is called, exit codes become available in host output. Iteration ends only when remote command has completed, though it may be interrupted and resumed at any point.

for host in output:
    print(output[host].exit_code)
Output:
0
0

The client’s join function can be used to wait for all commands in output object to finish:

client.join(output)

Similarly, output and exit codes are available after client.join is called:

from pprint import pprint

output = client.run_command('exit 0')

# Wait for commands to complete and gather exit codes.
# Output is updated in-place.
client.join(output)
pprint(output.values()[0].exit_code)

# Output remains available in output generators
for host, host_output in output.items():
    for line in host_output.stdout:
        pprint(line)
Output:
0
<..stdout..>

There is also a built in host logger that can be enabled to log output from remote hosts. The helper function pssh.utils.enable_host_logger will enable host logging to stdout.

To log output without having to iterate over output generators, the consume_output flag must be enabled - for example:

from pssh.utils import enable_host_logger

enable_host_logger()
client.join(client.run_command('uname'), consume_output=True)
Output:
[localhost]       Linux

SCP

SCP is supported - native clients only - and provides the best performance for file copying.

Unlike with the SFTP functionality, remote files that already exist are not overwritten and an exception is raised instead.

Note that enabling recursion with SCP requires server SFTP support for creating remote directories.

To copy a local file to remote hosts in parallel with SCP:

from pssh.clients import ParallelSSHClient
from gevent import joinall

hosts = ['myhost1', 'myhost2']
client = ParallelSSHClient(hosts)
cmds = client.scp_send('../test', 'test_dir/test')
joinall(cmds, raise_error=True)

See also documentation for SCP recv.

SFTP

SFTP is supported natively. Performance is much slower than SCP due to underlying library limitations and SCP should be preferred where possible. In the case of the deprecated paramiko clients, several bugs exist with SFTP performance and behaviour - avoid if at all possible.

To copy a local file to remote hosts in parallel:

from pssh.clients import ParallelSSHClient
from pssh.utils import enable_logger, logger
from gevent import joinall

enable_logger(logger)
hosts = ['myhost1', 'myhost2']
client = ParallelSSHClient(hosts)
cmds = client.copy_file('../test', 'test_dir/test')
joinall(cmds, raise_error=True)
Output:
Copied local file ../test to remote destination myhost1:test_dir/test
Copied local file ../test to remote destination myhost2:test_dir/test

There is similar capability to copy remote files to local ones suffixed with the host’s name with the copy_remote_file function.

Directory recursion is supported in both cases via the recurse parameter - defaults to off.

See SFTP documentation for more examples.

Design And Goals

parallel-ssh’s design goals and motivation are to provide a library for running non-blocking asynchronous SSH commands in parallel with little to no load induced on the system by doing so with the intended usage being completely programmatic and non-interactive.

To meet these goals, API driven solutions are preferred first and foremost. This frees up developers to drive the library via any method desired, be that environment variables, CI driven tasks, command line tools, existing OpenSSH or new configuration files, from within an application et al.

Comparison With Alternatives

There are not many alternatives for SSH libraries in Python. Of the few that do exist, here is how they compare with parallel-ssh.

As always, it is best to use a tool that is suited to the task at hand. parallel-ssh is a library for programmatic and non-interactive use - see Design And Goals. If requirements do not match what it provides then it best not be used. Same applies for the tools described below.

Paramiko

The default SSH client library in parallel-ssh 1.x.x series.

Pure Python code, while having native extensions as dependencies, with poor performance and numerous bugs compared to both OpenSSH binaries and the libssh2 based native clients in parallel-ssh 1.2.x and above. Recent versions have regressed in performance and have blocker issues.

It does not support non-blocking mode, so to make it non-blocking monkey patching must be used which affects all other uses of the Python standard library. However, some functionality like Kerberos (GSS-API) authentication is not currently provided by other libraries.

asyncssh

Python 3 only asyncio framework using client library. License (EPL) is not compatible with GPL, BSD or other open source licenses and combined works cannot be distributed.

Therefore unsuitable for use in many projects, including parallel-ssh.

Fabric

Port of Capistrano from Ruby to Python. Intended for command line use and is heavily systems administration oriented rather than non-interactive library. Same maintainer as Paramiko.

Uses Paramiko and suffers from the same limitations. More over, uses threads for parallelisation, while not being thread safe, and exhibits very poor performance and extremely high CPU usage even for limited number of hosts - 1 to 10 - with scaling limited to one core.

Library API is non-standard, poorly documented and with numerous issues as API use is not intended.

Ansible

A configuration management and automation tool that makes use of SSH remote commands. Uses, in parts, both Paramiko and OpenSSH binaries.

Similarly to Fabric, uses threads for parallelisation and suffers from the poor scaling that this model offers.

See The State of Python SSH Libraries for what to expect from scaling SSH with threads, as compared to non-blocking I/O with parallel-ssh.

Again similar to Fabric, its intended and documented use is interactive via command line rather than library API based. It may, however, be an option if Ansible is already being used for automation purposes with existing playbooks, the number of hosts is small, and when the use case is interactive via command line.

parallel-ssh is, on the other hand, a suitable option for Ansible as an SSH client that would improve its parallel SSH performance significantly.

ssh2-python

Wrapper to libssh2 C library. Used by parallel-ssh as of 1.2.0 and is by same author.

Does not do parallelisation out of the box but can be made parallel via Python’s threading library relatively easily and as it is a wrapper to a native library that releases Python’s GIL, can scale to multiple cores.

parallel-ssh uses ssh2-python in its native non-blocking mode with event loop and co-operative sockets provided by gevent for an extremely high performance library without the side-effects of monkey patching - see benchmarks.

In addition, parallel-ssh uses native threads to offload CPU blocked tasks like authentication in order to scale to multiple cores while still remaining non-blocking for network I/O.

pssh.clients.native.SSHClient is a single host natively non-blocking client for users that do not need parallel capabilities but still want a non-blocking client with native code performance.

Out of all the available Python SSH libraries, libssh2 and ssh2-python have been shown, see benchmarks above, to perform the best with the least resource utilisation and ironically for a native code extension the least amount of dependencies. Only libssh2 C library and its dependencies which are included in binary wheels.

However, it lacks support for some SSH features present elsewhere like ECDSA keys (PR pending), agent forwarding (PR also pending) and Kerberos authentication - see feature comparison.

Scaling

Some guide lines on scaling parallel-ssh and pool size numbers.

In general, long lived commands with little or no output gathering will scale better. Pool sizes in the multiple thousands have been used successfully with little CPU overhead in the single thread running them in these use cases.

Conversely, many short lived commands with output gathering will not scale as well. In this use case, smaller pool sizes in the hundreds are likely to perform better with regards to CPU overhead in the event loop.

Multiple Python native threads, each of which can get its own event loop, may be used to scale this use case further as number of CPU cores allows. Note that parallel-ssh imports must be done within the target function of the newly started thread for it to receive its own event loop. gevent.get_hub() may be used to confirm that the worker thread event loop differs from the main thread.

Gathering is highlighted here as output generation does not affect scaling. Only when output is gathered either over multiple still running commands, or while more commands are being triggered, is overhead increased.

Technical Details

To understand why this is, consider that in co-operative multi tasking, which is being used in this project via the gevent library, a co-routine (greenlet) needs to yield the event loop to allow others to execute - co-operation. When one co-routine is constantly grabbing the event loop in order to gather output, or when co-routines are constantly trying to start new short-lived commands, it causes contention with other co-routines that also want to use the event loop.

This manifests itself as increased CPU usage in the process running the event loop and reduced performance with regards to scaling improvements from increasing pool size.

On the other end of the spectrum, long lived remote commands that generate no output only need the event loop at the start, when they are establishing connections, and at the end, when they are finished and need to gather exit codes, which results in practically zero CPU overhead at any time other than start or end of command execution.

Output generation is done remotely and has no effect on the event loop until output is gathered - output buffers are iterated on. Only at that point does the event loop need to be held.

User’s group

There is a public ParallelSSH Google group setup for this purpose - both posting and viewing are open to the public.

https://ga-beacon.appspot.com/UA-9132694-7/parallel-ssh/README.rst?pixel

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

parallel-ssh-1.10.0.tar.gz (107.5 kB view details)

Uploaded Source

Built Distributions

parallel_ssh-1.10.0-cp39-cp39-manylinux2010_x86_64.whl (238.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp39-cp39-manylinux1_x86_64.whl (238.3 kB view details)

Uploaded CPython 3.9

parallel_ssh-1.10.0-cp38-cp38-win_amd64.whl (92.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

parallel_ssh-1.10.0-cp38-cp38-manylinux2010_x86_64.whl (250.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp38-cp38-manylinux1_x86_64.whl (250.7 kB view details)

Uploaded CPython 3.8

parallel_ssh-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl (94.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

parallel_ssh-1.10.0-cp38-cp38-macosx_10_14_x86_64.whl (94.8 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

parallel_ssh-1.10.0-cp37-cp37m-win_amd64.whl (91.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

parallel_ssh-1.10.0-cp37-cp37m-manylinux2010_x86_64.whl (220.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp37-cp37m-manylinux1_x86_64.whl (220.2 kB view details)

Uploaded CPython 3.7m

parallel_ssh-1.10.0-cp37-cp37m-macosx_10_15_x86_64.whl (94.2 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

parallel_ssh-1.10.0-cp37-cp37m-macosx_10_14_x86_64.whl (94.3 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

parallel_ssh-1.10.0-cp36-cp36m-win_amd64.whl (91.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.10.0-cp36-cp36m-manylinux2010_x86_64.whl (220.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp36-cp36m-manylinux1_x86_64.whl (220.7 kB view details)

Uploaded CPython 3.6m

parallel_ssh-1.10.0-cp36-cp36m-macosx_10_15_x86_64.whl (94.8 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

parallel_ssh-1.10.0-cp36-cp36m-macosx_10_14_x86_64.whl (94.7 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

parallel_ssh-1.10.0-cp35-cp35m-manylinux2010_x86_64.whl (220.0 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp35-cp35m-manylinux1_x86_64.whl (220.0 kB view details)

Uploaded CPython 3.5m

parallel_ssh-1.10.0-cp27-cp27mu-manylinux2010_x86_64.whl (196.9 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp27-cp27mu-manylinux1_x86_64.whl (196.9 kB view details)

Uploaded CPython 2.7mu

parallel_ssh-1.10.0-cp27-cp27m-manylinux2010_x86_64.whl (196.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

parallel_ssh-1.10.0-cp27-cp27m-manylinux1_x86_64.whl (196.9 kB view details)

Uploaded CPython 2.7m

File details

Details for the file parallel-ssh-1.10.0.tar.gz.

File metadata

  • Download URL: parallel-ssh-1.10.0.tar.gz
  • Upload date:
  • Size: 107.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel-ssh-1.10.0.tar.gz
Algorithm Hash digest
SHA256 ecc604baeb5608b175823aa9bf48a399fc400f4a68328776edcc241757b0d056
MD5 08322da33a873fa7cb4473b7a272afc4
BLAKE2b-256 21958dae6fe664232f10160a50c1dea1989d5968c48a15045bb8e49c97289821

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8ffd7ec01885e9b4b26ce7b0686e60937f409fa3932315e18695e1a02b15a6c5
MD5 ede3e34297a238e735cb5e0aeb4fb80a
BLAKE2b-256 bb46e972e60ffcc2e7bc310ecba4c34c4d730df4b898b82e12cdf8c177292688

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b9b1ef13782b81b7ddd246a7b3437abd6213b2559d4cdae880065660359851bf
MD5 4b8c93249f6b20922d1bc31ef63f7cfe
BLAKE2b-256 62817bc93fd75ae1e0fe29ec2eb11b3df74dbf6d98daf5e404babe55d42e14f4

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 92.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for parallel_ssh-1.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0116229dee83afd444aa4a78e779dda893e3ce58acee52d74b96ece6d7c3c9bf
MD5 e07dd206f67fd69ffd7e8f10997055f2
BLAKE2b-256 3c42d7f2ac771e918b23b08afd7dfae99d842ca211a357f46341615c82caa167

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac6de0162365064ae643c0c6e6cd56d3d3db2a7c2ce30fc86e547bb909348da2
MD5 adad2e79d61e50686c50c2fa9ef8de29
BLAKE2b-256 596bc5442b06495f068c7335d23c5263ae40dae9f5b7ea1d39c1cc64bbd79ab5

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c926b5017f0042c627de4f15b83897168d535f5d730f325027977338c955703
MD5 cfa7ba7643ef0f44075d3185638adbb7
BLAKE2b-256 17b738730b5f0e036be62aa763f4bcb210645d647f045b86fb230dcc17b2873e

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b099a58cd59391f85452005af1a9a423e33ff13519c44e56a532aaeff07f035
MD5 e3fe4411abc71e7a5752b4167beb974b
BLAKE2b-256 dab918ea47785d08c9aa51410fbb976138b96a59f08a4b5a9fde111fec3813db

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 94.8 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9ab1aead8797e821db55ae1a626ffa5326558c72c7efb05108a951799b38191f
MD5 4fb2e78d83841c2abacdf624dbce59fb
BLAKE2b-256 315e7f20725d658b5bd749e312e8c951e69ab50f9ce6cc781994a9ab9521f035

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for parallel_ssh-1.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6a5292e5efcc126513f81014cf26401c7d90219ee614fedb4c51509199e6d770
MD5 f500858e274ee6d9fd46f8e9aef6d3f4
BLAKE2b-256 f9b2cf3583373651b70009aa5180106484c62890876fe5872b3067bf9e6e620d

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4056f1a1905ca18f4b672377210183343c86408bc9e2666b44ad4265e7fe42c
MD5 efc04e4a8cef03df7ae19ba69509aabc
BLAKE2b-256 582b2f98cdcdfd0c291faa75ea01a6b2381dddbaa624599ecf2207751262fddc

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 220.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28bb35d3b8a7f0a77158212ded6071541bf3d419525d2af7e1f9505fc69e92cb
MD5 e117f4c6a58d58d708e451b819dabbb1
BLAKE2b-256 8b6f6810ae6cef3e2a19a411b6991c8b52861cc041da8958f194d99d963db636

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 94.2 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6cfa7eddd8770c4c887221d7ddb80fd4750c90662cf488e5cf68cc69bcdcecb
MD5 5dbb74c83e661a8cf5e755b0fce06eda
BLAKE2b-256 7e6fd3929c6fe7f0a1bd0f826b4308967a357baa388f5c1cbbbf671bee283436

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 94.3 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 63e4ed9b4b65fbb5120204a31dca5bf362cba7e6e21ab13f79ca83df7f109ea2
MD5 123d9d42449049bd2d74108174b2fbd7
BLAKE2b-256 93ad9fb4d2c282f36bfeab355c188a961e78dd04f207ceefa7180b98485104cb

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 91.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for parallel_ssh-1.10.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fae1b39c60a4a080502d2286ad7173765f9fae45a49a81e5eb9ce486ead956b8
MD5 81a75eba80c573e9c16fc590b86a4244
BLAKE2b-256 e997b2f5ebbdd1e694b91a82f400d4e63495d1609df539ecd9927ac8c8a26aed

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 220.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1620f7735d1339b37dc95e042fa1c3334c69d6a05d7e106ccd141a8477aa30f3
MD5 5cb2ff9a80c555d49d4e8bbd97e902f8
BLAKE2b-256 600617ef3ca4cc21edce4cfc942c9f2b534360b97ae5f97cfbf6e385f65a8412

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 220.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 17ba4abba7e631f2e26167923cc2b4454f864c38a848e7c0b74a36433dbd84f4
MD5 59e74cd7f67a4774a791840774d68412
BLAKE2b-256 0c38252ac2535f3792177a7d9b72aef318139aeb96c97b79432fbf1c5ca605f5

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 94.8 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ed88c13909f371427f5bd018a5113a8d11d6c226d7fb56525b2811ed09f1f999
MD5 8f05f471a5905b530a391cd1f9eef1dc
BLAKE2b-256 1926581fe1e5397e978693c7e1a837082591a5596e4e665e01ba688b28c2600e

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for parallel_ssh-1.10.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 88e145deafd6384d996584e344850304b311567f7bdcf2cf45be5be5d83695dc
MD5 3706016d7c4a875be46dde1d67229b76
BLAKE2b-256 e4df6086c32184e5b0324c6cb6cdf2ae5d22fc9380c0bb035859318994227d5d

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c1b5ef03ae08685afbf0323f9d7bc23fed0c1ef121912a58357d0dbc63286ec9
MD5 5b63bc25d52ea38de176401bf05da227
BLAKE2b-256 9359b9c2507540d83695272f098a2f99f85f1894809a8761f065b2d6132b2514

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 06ccd16476cfb6ef7fa8cf47e7746839159309ace671ed6c4d71a87667f6319a
MD5 438b18d631fe05518907fdf3f968c276
BLAKE2b-256 94e10e6871f1b2d0344732b86aff2bec23486053940b045a060cea4be29753af

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4aec635c2c8c9ca1b2fdab5a1c2582a4eee0fc10c371f42dca78bb60d9c392c
MD5 af0468cf1f0275e069e82b2fa5bd1c29
BLAKE2b-256 93e69dba8537be1d86c2d2741bc0e67efc32b19a48327d6abce0ef029cb81953

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6a118a82821b56442055aeb1dfda476e53ee911f9f0d227af23767f2ad5aa430
MD5 41623967ce2ced79b62c1c12f68dd0da
BLAKE2b-256 3e50ddd5f07b3dfbf32c1aacbf40426b1ed95c9c71618a03dc35a024b4092a11

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 734872e8e89c6ad1a8b5a13c0da2b35be14f5c30975522a89ba484557ab1cab7
MD5 dc056735b86cf2a04183a918445c2466
BLAKE2b-256 311b28d5e5394a51114e552abd0fcf51e62ac7456dd6eabf0eb44325e7c8c6e6

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.10.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.10.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for parallel_ssh-1.10.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd2b263d6ac9f76d76423c81b06c9d9c7e8c59f230b70e6a3da168bf48791874
MD5 b458284daab20ed2145f8b6f59438feb
BLAKE2b-256 bae4c3bc378f99c368bbaab13f91f24c114d4ae88e6dcbc4da1bb1592abb2af5

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