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

SFTP

SFTP is supported natively.

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 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

This version

1.8.1

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

Uploaded Source

Built Distributions

parallel_ssh-1.8.1-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

parallel_ssh-1.8.1-cp37-cp37m-win32.whl (1.0 MB view details)

Uploaded CPython 3.7m Windows x86

parallel_ssh-1.8.1-cp37-cp37m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m

parallel_ssh-1.8.1-cp37-cp37m-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

parallel_ssh-1.8.1-cp37-cp37m-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

parallel_ssh-1.8.1-cp37-cp37m-macosx_10_11_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.11+ x86-64

parallel_ssh-1.8.1-cp37-cp37m-macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

parallel_ssh-1.8.1-cp36-cp36m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.8.1-cp36-cp36m-win32.whl (1.0 MB view details)

Uploaded CPython 3.6m Windows x86

parallel_ssh-1.8.1-cp36-cp36m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.6m

parallel_ssh-1.8.1-cp36-cp36m-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

parallel_ssh-1.8.1-cp36-cp36m-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.12+ x86-64

parallel_ssh-1.8.1-cp36-cp36m-macosx_10_11_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.11+ x86-64

parallel_ssh-1.8.1-cp36-cp36m-macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

parallel_ssh-1.8.1-cp35-cp35m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.5m Windows x86-64

parallel_ssh-1.8.1-cp35-cp35m-win32.whl (1.0 MB view details)

Uploaded CPython 3.5m Windows x86

parallel_ssh-1.8.1-cp35-cp35m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5m

parallel_ssh-1.8.1-cp34-cp34m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.4m Windows x86-64

parallel_ssh-1.8.1-cp34-cp34m-win32.whl (1.0 MB view details)

Uploaded CPython 3.4m Windows x86

parallel_ssh-1.8.1-cp34-cp34m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.4m

parallel_ssh-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mu

parallel_ssh-1.8.1-cp27-cp27m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

parallel_ssh-1.8.1-cp27-cp27m-win32.whl (1.0 MB view details)

Uploaded CPython 2.7m Windows x86

parallel_ssh-1.8.1-cp27-cp27m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m

parallel_ssh-1.8.1-cp27-cp27m-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

parallel_ssh-1.8.1-cp27-cp27m-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

parallel_ssh-1.8.1-cp27-cp27m-macosx_10_11_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.11+ x86-64

parallel_ssh-1.8.1-cp27-cp27m-macosx_10_10_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: parallel-ssh-1.8.1.tar.gz
  • Upload date:
  • Size: 102.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel-ssh-1.8.1.tar.gz
Algorithm Hash digest
SHA256 6f93b313f4521fca61f664839caaf15365c4e12764554280b933f30d796689cf
MD5 7c3f999c942d137bd1fbe20663152fcd
BLAKE2b-256 5e7cf1e5b7dff9ede839a80ddc111f687ca361792c8b1cbfc28bfea076d1106b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7633fec02685aadecbb8dee9826b8501af713e003ed9ed07279e8e2079f4f0d5
MD5 7ce32ec0ea612af01d7161f10007ebad
BLAKE2b-256 a6f80a2c9f23e54f39a691a7e05c129d11c8a576de8e025d6a592529926e9ad9

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 42b9123498d5817d99a14d051bc3bbd3129c111b8f943ce3794a9684bb9d5a63
MD5 c903a61e3d308762c9ee94a73ada5f69
BLAKE2b-256 3a0350b81919e6c14eae74c72089b9bf8b63edde75e0be604a7c9aef74ec7b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 576ed0e500193a57d3399f2d8421a0f884cdc0fb2eb7ba1a37e57141ee17d7ba
MD5 34a6439021ba0d4d58361ce696e9a80e
BLAKE2b-256 4d8a563a4a4e10af3d155d776ab8bd772c2c4ca05885d6c172327c7b786c0209

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f359c3ab2ec92355850489263f7cf841761d590558742deccdd60d0532d98bb7
MD5 802d229df64ee97d4656ae8076df6155
BLAKE2b-256 8e45184ab1594c4d1487ffdef55ce112ec1f6cfd3b702b083ebe0c9e2aa40270

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed8c51bb74ed6d6977c4397599a72772864085c729ebd5c5faa519ae8138312c
MD5 0fadf175e63442c2661b6171a01ad652
BLAKE2b-256 5c47800c13ebf84ba8fe56321397521b4b6e84d592f7b6ecd989fad6187bc70e

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp37-cp37m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 51f7c282a77f39ac7a3c5bbdc3e9b2f9b1c86faf61c6e5962376245209417627
MD5 8e17f99e5c2e17dd7cb7b09aeecaee49
BLAKE2b-256 3ba9edbfcd40134737eb70d459f8b7422980d96701d9e9af716779e1ffb92b52

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 35066e7036bb47ea0b16fc6ee3b77f6af429f1183d013535a5f006fa0f158c03
MD5 1530527ac3fa791f72891972db66b9aa
BLAKE2b-256 7f299225f8dc80daad7ca44c69edf9de85171daf8fb4169c9fecac739ff7f521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 946ab9e384e6b33c41ddcc0da93e5d1f1ea3001f2f5830412eda86b6be59be00
MD5 ea1dd87b98a43ad0211aa3dc40905850
BLAKE2b-256 52809f20d5a5c4bd542b48138c536c629d26f77ecf268012ea32e7a8d3fa4567

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a52778f1eea63233005c09ff63ffbc964016eefc62031de918892588f8fd2975
MD5 09a4041ccb2fceb7f4aafdac8c2b1001
BLAKE2b-256 305b014a3e5ee4e5dd0488d83ea54fac7741464b0899b1681de1fa406ce7358a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ddbeaf4a32e61f1d2f20842ca7384ca1cb7b7e904d70f273706054d678be071d
MD5 667d9e16d37ce5fde6d0ef2fdfcce77d
BLAKE2b-256 49fd45f5ec337538a12d95719bdba571e5397d79a5c21b11e7167eaed4d233fc

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c52c82a05b4fc77ae6eded09d79f59e6a9989fe08e051259f459af8e26a59356
MD5 1668f84dbb5ab57e6a1c008d77a82ae4
BLAKE2b-256 11fb2be6b90064d01dfea3924de80b91831e558c49178250fbe283f5f0230c7e

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp36-cp36m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15d7be4808fe5475104aa8d84aca5f1ed15b1b4f64408ba229accf617c619ab4
MD5 1a5c3ca6787939eecc36d9ee476c0fd2
BLAKE2b-256 883b87a7b5e5d51ac8dc647cffcf1a7010a615581b8b41cd0ebfdb4b29a9d9c6

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp36-cp36m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 170e5e13d998aa52e97aae2af0bbec52351205fc3ac841e58a13ee109c254ad7
MD5 31992786af4853cc82d36aad47309863
BLAKE2b-256 c48962409adad79117e50b860beb26e8fadb134d015f95f8b65d084512d519d2

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9fa0d1b7612214fedbb9b73bc2e5ca653eb5316e5e8d77ffb20480754499cac2
MD5 49f4c40b643c7d474ec649c37cd3e6db
BLAKE2b-256 f808ce334be106c1a78e1d45031d9057d5e2fc9d531d6b1a82b666c81be73d53

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for parallel_ssh-1.8.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 22b944df1d885bf3de03fcac09b781015cedc4edfdfd8d591f10bd3a055f4827
MD5 5fbc9d66271eb85b4b5ba46220cf6d3e
BLAKE2b-256 cfa42118a815665875975790d3ed7364a5d81d304a4e8cfe41b5b8e20d187240

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for parallel_ssh-1.8.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a4ea88cb65bd78cb9d30d185849b7c8ca8ed670c72d06f2efb99927bc460f79c
MD5 dcca256d1844f6951243ea75e5f2ccce
BLAKE2b-256 dcb648e4aa6d0335809826bc22d458ff9644f51ec10f89984b2bb4e9932fa7d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 766e3746aa432037e9f217febbb30357b2cc70fd62759b6549926d2c053b8318
MD5 ce7a21605d737f3c7ad118dde1717315
BLAKE2b-256 77773c2b7acd13c294d82c6f2cba64cf932b901522f3061d87fe386edcba5936

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for parallel_ssh-1.8.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 8cc842afd4dba1add4191e7d171a81aca0ce1655bf8816cca588f8e82709f8ed
MD5 6153d11e6fce0afb5464e648d01181ea
BLAKE2b-256 ed9a669561ebabd06ddf413e1bf24328e48cfd9441decb2989edabf3a1b45e9b

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for parallel_ssh-1.8.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 70faef9fc8556f676e2678258210343739debaf0642a9fc1c2c8f494a7ff0f3b
MD5 e19fa567e99c8230f87458cd80dc21fc
BLAKE2b-256 7972dde43b09daf6356c5ea0e5330d2c98d150bab6586c532fb8c8d6cd22d5a7

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2927c3826e5ee79321940812c45dfba884384b4cc3c9d4f90153ec590b2dee47
MD5 7dac6a0b9bb27267b71aa400a49a2ce5
BLAKE2b-256 18feab8ad647256c0b8cc6fcbb060f10a6b85fa366cc3b7d5bac7b4a154b6aab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 62840620049bd8cca028f343caa4a9aee1aca1f7826460dd65006bd7efedbc3a
MD5 4ad613cc54b2c70d9bb07004a71a3b62
BLAKE2b-256 a4f4ce258088e72006a4287d770cb9714d92a4cf6e74c7c41d7f932fce6dd820

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8952a9a466ac8b3486b1a3b1b55adb14bfe0835fe18c7401495d186fc462d768
MD5 d9b5851b9df7ef46cc8ce9ce06c2480b
BLAKE2b-256 4c99c5535c32e47fff8729f0328b6ffb3f2e7e0d2564f7ad4b014e6007f4799d

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 90cbfd369049d67cd8c5480a6ff7031cf6bc2b4870702bdc93a3e382b28b5573
MD5 7df03f587277bb5a24b2a75a73fd3e93
BLAKE2b-256 542658210616732abb73e942ebf7ad4800346c32304ab4c0a4e66c78d2f560a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d8de962a605489f0f2a79a167ac18f3c185d613902d146ec92503262f4d05ac
MD5 3556c9ee237a9bef4275b17d9ed896ba
BLAKE2b-256 80b9d857cc1ee041746d291171c5b68c381be5ef8a719d74bfc05deecbf6c19d

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f85a589c580296f3b9d28f0b141c1f9757b610f27cb77505d0f1e678d3c3d350
MD5 351ac1daba69b811ac55351fcf995bc6
BLAKE2b-256 dc64cf1a7d9f6211e49a35dafe1494fd20eaf6f1d8cb99cc971549fa3e724f3e

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9372dab3e308bc699aa89f27ed90681fde99f6fb86995da772fd65e63257aa2d
MD5 54c6ad8d4c8192fdadd435b53a7f1184
BLAKE2b-256 3a59e6ad9f3aa251954cee1b4ac48d71d30f42fddb5f12018d963a477f3c3360

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 96f0598e1d710d3b15c07984323721879727bbdf04583ca7d6fadd9cfca85f65
MD5 197a8ed45170b5ec8b31f10e88eac274
BLAKE2b-256 cb4f802e40853472a4cb9b7fd9e76ba25ab60d3c7e71b2d5769fd6024cf19115

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.8.1-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: parallel_ssh-1.8.1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.8.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 72d8d55594a05ffd4abc0c21fbfe8e2d26c8ea48e9fe10fc1082bb1070eb7011
MD5 46a1508bf0c2abe3a107430cbb39c25b
BLAKE2b-256 a17e3e0faa54a946768b1776f2beca0d74269248bac0b27160fb5f7527948ba8

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