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.

HostOutput.exit_code is a dynamic property and will return None when exit code is not ready, meaning command has not finished, or channel is unavailable due to error.

Once all output has been gathered exit codes become available even without calling join.

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
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.11.0.tar.gz (108.4 kB view details)

Uploaded Source

Built Distributions

parallel_ssh-1.11.0-cp39-cp39-manylinux2010_x86_64.whl (246.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.11.0-cp39-cp39-manylinux1_x86_64.whl (246.6 kB view details)

Uploaded CPython 3.9

parallel_ssh-1.11.0-cp38-cp38-win_amd64.whl (93.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

parallel_ssh-1.11.0-cp38-cp38-manylinux2010_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.11.0-cp38-cp38-manylinux1_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.8

parallel_ssh-1.11.0-cp38-cp38-macosx_10_15_x86_64.whl (96.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

parallel_ssh-1.11.0-cp37-cp37m-win_amd64.whl (92.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

parallel_ssh-1.11.0-cp37-cp37m-manylinux2010_x86_64.whl (226.8 kB view details)

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

parallel_ssh-1.11.0-cp37-cp37m-manylinux1_x86_64.whl (226.8 kB view details)

Uploaded CPython 3.7m

parallel_ssh-1.11.0-cp37-cp37m-macosx_10_14_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

parallel_ssh-1.11.0-cp36-cp36m-win_amd64.whl (92.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.11.0-cp36-cp36m-manylinux2010_x86_64.whl (227.1 kB view details)

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

parallel_ssh-1.11.0-cp36-cp36m-manylinux1_x86_64.whl (227.1 kB view details)

Uploaded CPython 3.6m

parallel_ssh-1.11.0-cp35-cp35m-manylinux2010_x86_64.whl (223.0 kB view details)

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

parallel_ssh-1.11.0-cp35-cp35m-manylinux1_x86_64.whl (223.0 kB view details)

Uploaded CPython 3.5m

parallel_ssh-1.11.0-cp27-cp27mu-manylinux2010_x86_64.whl (200.2 kB view details)

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

parallel_ssh-1.11.0-cp27-cp27mu-manylinux1_x86_64.whl (200.2 kB view details)

Uploaded CPython 2.7mu

parallel_ssh-1.11.0-cp27-cp27m-manylinux2010_x86_64.whl (200.2 kB view details)

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

parallel_ssh-1.11.0-cp27-cp27m-manylinux1_x86_64.whl (200.2 kB view details)

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: parallel-ssh-1.11.0.tar.gz
  • Upload date:
  • Size: 108.4 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.11.0.tar.gz
Algorithm Hash digest
SHA256 a804134c7e88440be125e273d86aa38b8b356cb8c3f79e96d78cdb9b5b12c909
MD5 2c577316bb30ecb5d567ce717af7a9a0
BLAKE2b-256 e6af490113b031e637e984bcf4d37b3b64a76f1ce567f6f19badd0e41c26c417

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 246.7 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.11.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4bece087d92f642b8468f2efcb55af9dd7cbdfe21efd697f6302881862887ac3
MD5 09c99e91252f397345682e2dbf466ec3
BLAKE2b-256 495aab322027fadf6282edb08e52e5bb52bccbc7198bcfd739196b6a168378a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 246.6 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.11.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8fa4f8989b919e7e8e4c3eec2e939e52c41b490df9cc4fd840edf86ddeab53b9
MD5 73ff181bd6e3ac14e556ce988256b7b1
BLAKE2b-256 f3ac75225b5156cbb5d4003b31ed2bce9448dc4d6bc8768677fbf757809b0e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 93.1 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.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 89ba742cfba3e6f58caf1736759b7b61336d46841d8836154185a52aef8385d7
MD5 0e4980828f93dfc9a4d307dc00c670d7
BLAKE2b-256 6a491294607a1dc30a89d883330453da8de524df8a5236aab94ed596b6ecce43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 261.5 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.11.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c4238fc860c3081a85848971a33e756791b9d89512016b7637192454bb17288
MD5 50d19a5dfb3ba2da319d523747714908
BLAKE2b-256 8328611f87d05ee9e3d218eac7f77575b2d04a76b78006074154d2726ee79ae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 261.5 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.11.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52c65ddf72c04c4ce1c547eb996e45e4bf647534c70d42e7d25b0b319ddf0819
MD5 b301138ff6a4b41aa8d0b5aac4bfd65b
BLAKE2b-256 273f75d1b07d794e5fffff6e73ec5fdabdb202e53bdbb73160d400f87b3e668b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 96.1 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.11.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a323633d10f347e1a5b110fde416091c47d08907c579dcb8149f256b76aa914
MD5 c7e7f42bbbc7020f92398da402972627
BLAKE2b-256 8f098b2d084602ac52b07706e51c139f5b9b3a47a11dce0ba6537915fdec8b61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 92.2 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.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1b7c52024713cc2d11d20c6faacbc2fc33d544b792e54fbd5fb6b9226ed1abd9
MD5 00888a2902a44589e0cc0ddbd92f0763
BLAKE2b-256 30cd4e4363eaa070d57a5672bbdf0a4102a9b3f919917bd95cd119dfe7294d75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 226.8 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.11.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f61465fe7240656208cec9b5f0152b165ca542baf79e37ebfd527598e03fb7ba
MD5 01d6d54b6b2e887c1521311c0d46e4c1
BLAKE2b-256 908af874659df0836e4a75bdb32986fe5b59ef9ecc9bb0488991f57112ca0a9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 226.8 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.11.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b4c5ce07992d8cc123be69716e38a49e47abcc3aea056b8f29f06929d302c2f1
MD5 5694ef62f2fb93d2d88c22ed6907d692
BLAKE2b-256 a2238a9f578545c11d97b6d78959e71607dea198c69e7f57843c90088b52e4e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 95.7 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.11.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 065b29338063d7303e751aba6115ed426c9e56010504bdeab315ba60e985b48c
MD5 9804fa84950f4bcbf8e5aadc3338a3a8
BLAKE2b-256 db6631d434e3cd12af96c8c5403962c3678c20b2775e0fd010ed04e38155114b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 92.4 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.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 305090ffb6f912b93066fbb2312b97f465a4ce74af82ea1b4c67d3152e779534
MD5 28da6e826650519a8a8576fd1addf3a0
BLAKE2b-256 912080d2f944422f5f64022323e48750108ac3e472bc46a91aa9dd801087b210

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 227.1 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.11.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 36514fb84f7259855e6b7b2a0c9c8b054c9d35e14e3d8f753c7072de51f067e6
MD5 7ad1f822ffb68da00b137bae346649c2
BLAKE2b-256 3155481c8b6b5808c8611272784e29b8a46ede3af44edb6f4ac5ce89f7423626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 227.1 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.11.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 787016779f0dd7c7e606f15e8a1ffdd0e4f42b838dea164072e0f534be816214
MD5 61917850addde62ef746294ef3578937
BLAKE2b-256 708382fceed1ceb04dff22b2d648cac298d7629650c4abaf2a82518a43d5d459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 223.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.11.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 caff2d931179c734694329b36767e9d8429aa13d3739d5f85d426d8211fde11a
MD5 22c9fd84ee81aa53d1145f5998a13253
BLAKE2b-256 a8eeab5369e16cb6e9fff6bd55bcfef1d86626f0902014146500e0b6a2710ee1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 223.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.11.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 89319a1e83b480daaa23189781800d3483480ecd70109b537c842e6794ecf69f
MD5 455176cffe86da9edabe12e3ce0b1416
BLAKE2b-256 1134b134c2819ba51165e6edb7bb086fe1576cd2cb21f19b67cf2c6cfc743c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 200.2 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.11.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e52dff22f4efa99c274a07c94e81a58a5d7b54bc163ca9d46f06e763ac005f5
MD5 c1ede228d601ad58c86966c4aeea3bee
BLAKE2b-256 7695ab14de86382ebfc67de50885dd3b12bafc2cae2cb2ba931d8cd885c0087a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 200.2 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.11.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5721214a88fbc959e666ed81bd3140ecb8805cb16663d48aee3e3f88f900dd35
MD5 dfbf0166185e2ae752dd21a94bb3c939
BLAKE2b-256 1fe82a0578410c361a0982b16cb1991624c9eddc27aefd72304a38e05c298bcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 200.2 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.11.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f3d697d97588d71ece12c4d7ea707f2346fbe03c07f4f7990ca3ca1cbdc737f
MD5 e96c4cd0fdb6bb9884472a7dfcc48ace
BLAKE2b-256 9e361a191603de807cc024ae9dd80a86a402cf3e14aeff3e1a946dafa08aaa23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 200.2 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.11.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 668abdd4e05ca44d83df50822e5b7ecc77144e9f172f1bf57963117d3e78973c
MD5 f1f9ffd9e6ab291a79aee96498ccc535
BLAKE2b-256 581b4bad7f8d518bac227468a7fd45780c1ae2dee6644b2b63f36ce6ffbcb898

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