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

This version

1.9.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.9.1.tar.gz (100.1 kB view details)

Uploaded Source

Built Distributions

parallel_ssh-1.9.1-cp37-cp37m-win_amd64.whl (91.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

parallel_ssh-1.9.1-cp37-cp37m-manylinux1_x86_64.whl (174.9 kB view details)

Uploaded CPython 3.7m

parallel_ssh-1.9.1-cp37-cp37m-macosx_10_13_x86_64.whl (93.7 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

parallel_ssh-1.9.1-cp37-cp37m-macosx_10_12_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

parallel_ssh-1.9.1-cp37-cp37m-macosx_10_11_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.7m macOS 10.11+ x86-64

parallel_ssh-1.9.1-cp36-cp36m-win_amd64.whl (91.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.9.1-cp36-cp36m-win32.whl (87.4 kB view details)

Uploaded CPython 3.6m Windows x86

parallel_ssh-1.9.1-cp36-cp36m-manylinux1_x86_64.whl (178.5 kB view details)

Uploaded CPython 3.6m

parallel_ssh-1.9.1-cp36-cp36m-macosx_10_13_x86_64.whl (94.4 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

parallel_ssh-1.9.1-cp36-cp36m-macosx_10_12_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.6m macOS 10.12+ x86-64

parallel_ssh-1.9.1-cp36-cp36m-macosx_10_11_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.6m macOS 10.11+ x86-64

parallel_ssh-1.9.1-cp35-cp35m-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

parallel_ssh-1.9.1-cp35-cp35m-win32.whl (86.6 kB view details)

Uploaded CPython 3.5m Windows x86

parallel_ssh-1.9.1-cp35-cp35m-manylinux1_x86_64.whl (174.5 kB view details)

Uploaded CPython 3.5m

parallel_ssh-1.9.1-cp34-cp34m-win_amd64.whl (87.9 kB view details)

Uploaded CPython 3.4m Windows x86-64

parallel_ssh-1.9.1-cp34-cp34m-win32.whl (86.1 kB view details)

Uploaded CPython 3.4m Windows x86

parallel_ssh-1.9.1-cp34-cp34m-manylinux1_x86_64.whl (173.8 kB view details)

Uploaded CPython 3.4m

parallel_ssh-1.9.1-cp27-cp27mu-manylinux1_x86_64.whl (161.7 kB view details)

Uploaded CPython 2.7mu

parallel_ssh-1.9.1-cp27-cp27m-win_amd64.whl (88.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

parallel_ssh-1.9.1-cp27-cp27m-win32.whl (86.2 kB view details)

Uploaded CPython 2.7m Windows x86

parallel_ssh-1.9.1-cp27-cp27m-manylinux1_x86_64.whl (161.7 kB view details)

Uploaded CPython 2.7m

parallel_ssh-1.9.1-cp27-cp27m-macosx_10_13_x86_64.whl (92.5 kB view details)

Uploaded CPython 2.7m macOS 10.13+ x86-64

parallel_ssh-1.9.1-cp27-cp27m-macosx_10_12_x86_64.whl (91.8 kB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

parallel_ssh-1.9.1-cp27-cp27m-macosx_10_11_x86_64.whl (91.5 kB view details)

Uploaded CPython 2.7m macOS 10.11+ x86-64

File details

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

File metadata

  • Download URL: parallel-ssh-1.9.1.tar.gz
  • Upload date:
  • Size: 100.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel-ssh-1.9.1.tar.gz
Algorithm Hash digest
SHA256 db1fcf8c9bc73516562497e7ee723e0927da60319b89e8c7c274e48a5c2a0369
MD5 c67d890fbdd2b91a43c554b3a4d876c7
BLAKE2b-256 9bf62e15792568c5b02fce7ad22de5f6bbb64fcdf719ec0755f0b228b23f0fb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for parallel_ssh-1.9.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bf519f42c8d2eaa8147d93fb3cbbf2b57474fa01b95a080a3e47167cef69094e
MD5 801d54bbfd4f86ca5a8a48c9cf713ced
BLAKE2b-256 9bf1471ca16456775f626bbe6d2426778105e36c8b06c8a0085860c2d2c4597f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 174.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47baa6e13009c0497ec45f22509a3a0c256a9ad47031c0c0f8adbe7164682c17
MD5 5b8ab82a9c7c0c0e8fd58c3bd3e33c9d
BLAKE2b-256 7ac4e72c0af11bd55130f3f140c520be380ae24ff9f961daad16818ac6c23720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 93.7 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 73b125b812ea7b522c0f96f2036ec131418a110d9ce6534df884b788ad4f3946
MD5 8081a33e917db16d4f3a65c9eb108d00
BLAKE2b-256 e4d2a64b7999fb15cc68be6247d5264e07754d9e1c96a6ecddd11420db6fc4b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp37-cp37m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 93.1 kB
  • Tags: CPython 3.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8547d70d23dc8a2a1f92743e3cb790160adb803eec5911606f2ea09f926f6a90
MD5 45f0e3db9c4455b7f0760ec6bdd16371
BLAKE2b-256 c15d30c767a738ef6c6efa49b4b0e15b2c1638f37f9af9b120908d16d73aaaf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp37-cp37m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: CPython 3.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp37-cp37m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 885b721796780a2204ec41bb45f269b431aa7f27101c0cbcf7d8a92faa3faaf6
MD5 d55054b0b4375716d1d4de9de5af55ac
BLAKE2b-256 bb295db248c8bc600a942864de14cb1df28d8d43172fdd9f075d6b2c37545507

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c0a7780b51a3bb7970ed165799e48045adebe0dcee66617e38f80745ad49dd59
MD5 007065193cf99c4f9e5f55894dd3271e
BLAKE2b-256 f6f470f69cc4ea99b5cb283d66d817ec7b66093fae3343f0f5bddc4032f41a9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 04b231e2aa424e3695a19b1ae11868845ea022324b78533475a1ac9469f3bbb6
MD5 602d8be67d472856b15b60845e63cadf
BLAKE2b-256 7e9b88377df0b7332b16a727cc1c8a643e45ff89f6167914ad8cd96bbcf0fa71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 178.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f3408bc9b3119a5f421bbb4f56db87afb362613f8b0fef21202af20daf687c15
MD5 a0fa113edf5b918abc6cedef9a6135f4
BLAKE2b-256 6c533311a4352f7442a758f6218e1feb1765e08271510760e234dc9a97dc0e50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63630c40d233923a600fe144dc0bc411387598e544f8c9d6b8ebba1e07be165e
MD5 29402eedebd1156a9b6272bc4264bcd1
BLAKE2b-256 42140110925bd21d4f79454f59841958eb28173a2e5bb0487eff0bfd3b044e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 93.2 kB
  • Tags: CPython 3.6m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45a1943cb2a9151cda060c977d6ffb38f59272540dcca3513513b5e2b48a5269
MD5 0895cdfc0245ae18f1adeb23c279c99a
BLAKE2b-256 8749d811991abc2b2edfd0e941563a4a1e06cb95fe0518a1b9eb9a9b5683fb4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp36-cp36m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 93.4 kB
  • Tags: CPython 3.6m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp36-cp36m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 00ef547befb8ed6fdd07599a157e9a24cdbe934187c59138f7e37f7d1c56728d
MD5 0e6707799602fa858385bcd779e5b35b
BLAKE2b-256 376e133e9d638e64155b25af11ce2cd71609600dd9608240f5beebfab1125568

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 90.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for parallel_ssh-1.9.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 cd74383397858974c2750f95dbaec631b6ada3f38d80dfe28104a67bafc4a457
MD5 9376c6f18d1e70ae6501c803c8913f61
BLAKE2b-256 4f805f3597b1a1b51255d6275fcb3e86b83c7147ae320984e6e6d4a61e94bae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 86.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for parallel_ssh-1.9.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ee82bfd06b7155ce000539d8ea77ee6de7a7cada818f0d62a49de90519297264
MD5 2d430d5e6c6a10b29d9812108f534df6
BLAKE2b-256 65c975d7c8e112692dad07b666c00fe0f86a1494b9300eee3e07cd26986d4097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 174.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb1b4794caa32a5d9bd5a33645c055c1ca78faae5105392782a66e190ea0738f
MD5 491f796da490f546f87d3b5a6c92210a
BLAKE2b-256 de26f4f58d2c940da5063706c591dd598fae81cea94ff6160c41b4888fc80f75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 87.9 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for parallel_ssh-1.9.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 5fede9690af554992953fe4a6006737bb9ee39dab7546ea84405ecd2872c73b4
MD5 0fe372a6b1c88a2b526ae01166393eaa
BLAKE2b-256 3c174e7f35ca655fe849c3931837360080ae27803e5979d33622d617b7e70b59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 86.1 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for parallel_ssh-1.9.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e546fdf3e1be09e2820e9e5a437ab4a165c5a1bcef2c6b5eae5999ebdc268bec
MD5 be7fbb6df752645697cb0e849bec2b1e
BLAKE2b-256 6466f4642b208598ed12348a062a1ad44cd0ccf416ac99cd86ccc781ab21f9c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 173.8 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b8c82926559cfa955d654cade3e8671e50a810d81c29609ed20d3040a1f7e787
MD5 4bbdc7c925e4cc2acab41630c1a28fd3
BLAKE2b-256 3c088bcc1f8f59ee0a8bffad1a48be44a9e94fdbf0f41f5aea963f7f7c8535a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 161.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5479bfbeff818aecd42dcd218b070ed6f47049c8287e2e90200b1d63fe0e5415
MD5 e3e0f09e629098bb2eeb47149454a2b4
BLAKE2b-256 03de690c5913b563575add5b9d94f220658d1e6d1c4cd15d1c83a7fad1224f8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f0ece3ddd27b9353beb6e674d750964f5724eb514702899433385ca6e4a481b3
MD5 50287b984c7b5f66b7c31ac4126eb5e8
BLAKE2b-256 a0492b7a840e8852c105c81c828a681edc09a5a166f61d1619bb308324cc046a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 86.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 326488326e6c18e8eaf2b4d0c73cbf990c42b6fc29c1fd8818c08e440035ccf0
MD5 edb1be8da6fa7ba3119ddaf00b33281a
BLAKE2b-256 080ea526fc7d2791b12f1d3736daedf5109d6e2d0c1f2076167dd7007ce33bcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 161.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdce6935cc4de10910e96a9a590b4968054f5e3cba3aaa8eb918f4e2f8a719f4
MD5 959c2297678cbd4cb64bfd94ad4277de
BLAKE2b-256 bdd01a6253ed6d60d8cea9e5938cac0cfd2c56222ea5da126b4f686501241f42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 92.5 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 76c38c1d649808462b8d09ee97e948be3de8d178d7651a53e0fc4ba0921cf7ad
MD5 c376bab77ff89b3595a49b236671acaa
BLAKE2b-256 896335079c705133fb48aeac20d6b36177835faae09bed03e2c9ae7fed3576e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 91.8 kB
  • Tags: CPython 2.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 393b0e4e46aee68da1bedaa8b41972f968df1feea994adb7247daf91cdad33b8
MD5 f52ebb27a67d3c05452bab99e495c637
BLAKE2b-256 d5350db9ced3a43c3a393f3f38cdd80d9082c4482c40db2b7ed17b867dc3c4f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.9.1-cp27-cp27m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 91.5 kB
  • Tags: CPython 2.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for parallel_ssh-1.9.1-cp27-cp27m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 a306559d907d4493ab85df4132b1a33f2cb4ea15ee192f6b1a8c507e919137c7
MD5 0774fa79c172d40203e37015cfe913eb
BLAKE2b-256 95b9df413696e4254445d3357eb0f0a547459f01437cd49aeb910eea381110f7

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