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

Uploaded Source

Built Distributions

parallel_ssh-1.11.2-cp39-cp39-manylinux2010_x86_64.whl (263.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.11.2-cp39-cp39-manylinux1_x86_64.whl (263.0 kB view details)

Uploaded CPython 3.9

parallel_ssh-1.11.2-cp38-cp38-win_amd64.whl (109.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

parallel_ssh-1.11.2-cp38-cp38-manylinux2010_x86_64.whl (277.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

parallel_ssh-1.11.2-cp38-cp38-manylinux1_x86_64.whl (277.8 kB view details)

Uploaded CPython 3.8

parallel_ssh-1.11.2-cp38-cp38-macosx_10_15_x86_64.whl (112.4 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

parallel_ssh-1.11.2-cp37-cp37m-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

parallel_ssh-1.11.2-cp37-cp37m-manylinux2010_x86_64.whl (243.2 kB view details)

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

parallel_ssh-1.11.2-cp37-cp37m-manylinux1_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.7m

parallel_ssh-1.11.2-cp37-cp37m-macosx_10_14_x86_64.whl (112.0 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

parallel_ssh-1.11.2-cp36-cp36m-win_amd64.whl (108.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.11.2-cp36-cp36m-manylinux2010_x86_64.whl (243.4 kB view details)

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

parallel_ssh-1.11.2-cp36-cp36m-manylinux1_x86_64.whl (243.4 kB view details)

Uploaded CPython 3.6m

parallel_ssh-1.11.2-cp35-cp35m-manylinux2010_x86_64.whl (239.4 kB view details)

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

parallel_ssh-1.11.2-cp35-cp35m-manylinux1_x86_64.whl (239.4 kB view details)

Uploaded CPython 3.5m

parallel_ssh-1.11.2-cp27-cp27mu-manylinux2010_x86_64.whl (216.6 kB view details)

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

parallel_ssh-1.11.2-cp27-cp27mu-manylinux1_x86_64.whl (216.6 kB view details)

Uploaded CPython 2.7mu

parallel_ssh-1.11.2-cp27-cp27m-manylinux2010_x86_64.whl (216.6 kB view details)

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

parallel_ssh-1.11.2-cp27-cp27m-manylinux1_x86_64.whl (216.6 kB view details)

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: parallel-ssh-1.11.2.tar.gz
  • Upload date:
  • Size: 124.2 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.2.tar.gz
Algorithm Hash digest
SHA256 f517f4da7890aa22bb5cdeb509ce7648fc55b2d9bd85eb4e1e59a5fafef7cacf
MD5 c122e4ba36333542c5ad7beeb07ea5ff
BLAKE2b-256 30dd579648c5bb8a85ef8da8775e7b9b5f72fda149c3b4b9c5560aab0cb8ea93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 263.0 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.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ae7d0b2927bce30f99dd5cabedd22230d110dcfff9cef3a5d5fa1c9782fdb3b
MD5 0f304a8961f6fba69522ee0cf2b84a20
BLAKE2b-256 c86a2d917a04790257305158a7fa8c2406d8fb8a028f54ecf4af148184285bfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 263.0 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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c4c82f8dbf05fa81d42505de20fd0539a187279d1de7f2dc4a26bf69a777f82b
MD5 85f45336c207cb6dc6ecaaab4398b7bb
BLAKE2b-256 7b8a586a76cc69b8b2c9ef594693ab5f9812ec61465d354cff9510427a273d9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 109.4 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 09603c76e45b71c9e47a73fa60d1a4d61ac3c562ceb03bff97f734a701f39b65
MD5 7c2cf1c503a8b4a61fab2dd72c8f86ec
BLAKE2b-256 4df05b677bfa861597dd5b719ba265e26fd0c3e9cbbba36cd16b0b0b54d3bad1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 277.8 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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d3bfc4b437fd661bc93cdcc4b123eef632df299ef51d3bea69c0a8a76fc2ce4
MD5 f29db4fa72a210483895b435d362f370
BLAKE2b-256 e7c7dc23ef1b35bef03c98c9dfff0359138909e96b13e6707445cd9fac0a7fa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 277.8 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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 687d9b3c6f833cfb71f51a7b54e56d69b0887382621fcb613bbdd3a3f1f49f89
MD5 354f65e0e42cb6654ad77b7cf316a733
BLAKE2b-256 5f360bb1b9264ad5547a1f35d649b8703ad70c93b1cf8096aedef0f098cac561

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 112.4 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.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 39b050c4470ec438963f8edd2880ef790e072e92349a0f153d371e85e5f3a4b9
MD5 24f0fd546e6e3362169168c5d39d5f92
BLAKE2b-256 438f4d3b345ff4ece94edc62ce0226789d4a1399543d4d11613be583d7a470c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 108.5 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e0ebb919e1feb6a3c34c7b7ccc31cc6d88a673bb0bfd23d3fe6ef2548b8db6fe
MD5 5b60c013888dc15b52ad500511951d65
BLAKE2b-256 d9fe577c73f6340f375828c056a67d913256c8b074fee8d43074ad6cad225f70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for parallel_ssh-1.11.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 507fb303bbad9c2ccce4005a5221f8f2e13768c3a318779375b4a7528d1f2cc7
MD5 8329a0e532eed653353c9fd84830b748
BLAKE2b-256 5d8a00e50557e5ee3f2a3ded3190dd010a7f36ec49c1e5d937b8832eb8744122

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for parallel_ssh-1.11.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 340d880fec7fdf52f1374f564a4b6830e12f9b5cd182a5022f25a74b6ee79ccc
MD5 56f3c44d64c31b52935c0308b5ab4a08
BLAKE2b-256 63330055bc79b83e54eeae56a6c5ebf0877b0654e83b3315e99ac5d9d6f8fbcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 112.0 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.2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 559407c3c4c77f11e1ad86e2de5c62996121ac9774b951b7bcdb13f96662664a
MD5 ce2f66af4f88fd735dacef366abf1c9e
BLAKE2b-256 eae4d0976239951046a8a74f24f5052872aa2cb3c973aa42d2a0bf5338c9a81c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 108.8 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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 75acd536ed1ed6f22bd113800dbe1bb2f99198180ed7c52065307134b9596571
MD5 304fcdedebba03e15dee93dc5fa8d10f
BLAKE2b-256 797623b467827caad0f0c7ec9b10c14cf6543f61246f24718e4873f2c275fe92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 243.4 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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0cd751a50c8d50eaba332d9ddd29e36c6c0e18441045cb5228c17eece20c16d2
MD5 67361fea22ec353510116bebc95d41fa
BLAKE2b-256 a9eb3e217a76ce14c4e3dd750f7de0d05943f7eb69d8d4ef8d5cd8a7018e8be7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 243.4 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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37b581e4f187ba5b5a5c61ad7ba4d4dfde0709000bbafbc36c67f912fedff903
MD5 ae5281f9b791bef301d2ee5c88c59af8
BLAKE2b-256 541fea9b04892c8017db52fc2493b877f479bab34f527bdb71129d49147b90dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 239.4 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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d12ead9f4cf2dd79a793b33e285a6939a82881cb550117b787113dff659eafd2
MD5 29bbfb66a3ab9e85a84e7c7edf1b0a8b
BLAKE2b-256 7405eafe3211feefc1f59b8b17c27897a8cbd13de117e93866b10bd24d6ed4eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 239.4 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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9d7fe855fa907c977b467bb7f2114341d905f16d88352fd56e88e2ec78e2ede
MD5 01e4ef4c65992b5ab89d0f732026e6dc
BLAKE2b-256 e75ec4cf1d2f0589c7eb188e7307fbd8c3d3d0f991b54133a1c511bb1fb9f26f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 216.6 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.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 204547922affcb8416fea08f5e748e380224e476e345cba7df6561b5fc6487a9
MD5 07341c37fdac0a6a9953da60ebc83546
BLAKE2b-256 9770ff590a4d72fdb8ca9bb8fec97152b34b5bbb05f076330d7891f2a370be8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 216.6 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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fe044757e6dad799ece6806561414366f7db8928361c22f5c2a43954b21fec2e
MD5 9cda8b8ceb3068c29f6d97a5b16fe32d
BLAKE2b-256 dfbac5d006ecac5f627a8f1704b453458077b1e7eefdb8decc5a36da54c59892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 216.6 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.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d97667a3c0245030f334d4f545e2f4d6d35adc567b4c8936daa05384ed5ab02e
MD5 7b51aa459d93a7e97f7c3ee085145e6e
BLAKE2b-256 2be247887d367fb5f820c35a9cf3b342dec32d37f8d451ed7b5a1512313349bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: parallel_ssh-1.11.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 216.6 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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 66ef9f1a1d89413010bfbabc290ff65a848203f74c60122f81b8b01f1e8cb000
MD5 a69a43ea365e3a95b51b0e0ad94813ac
BLAKE2b-256 be3069aa77674c784b053a9ca3efa84f8993e11db713806f7949c4cf26414e7a

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