Skip to main content

Asynchronous parallel SSH library

Project description

============
parallel-ssh
============

Non-blocking, 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.

.. image:: https://img.shields.io/badge/License-LGPL%20v2-blue.svg
:target: https://pypi.python.org/pypi/parallel-ssh
:alt: License
.. image:: https://img.shields.io/pypi/v/parallel-ssh.svg
:target: https://pypi.python.org/pypi/parallel-ssh
:alt: Latest Version
.. image:: https://travis-ci.org/ParallelSSH/parallel-ssh.svg?branch=master
:target: https://travis-ci.org/ParallelSSH/parallel-ssh
.. image:: https://ci.appveyor.com/api/projects/status/github/parallelssh/parallel-ssh?svg=true&branch=master
:target: https://ci.appveyor.com/project/pkittenis/parallel-ssh
.. image:: https://codecov.io/gh/ParallelSSH/parallel-ssh/branch/master/graph/badge.svg
:target: https://codecov.io/gh/ParallelSSH/parallel-ssh
.. image:: https://img.shields.io/pypi/wheel/parallel-ssh.svg
:target: https://pypi.python.org/pypi/parallel-ssh
.. image:: https://readthedocs.org/projects/parallel-ssh/badge/?version=latest
:target: http://parallel-ssh.readthedocs.org/en/latest/
:alt: Latest documentation

.. _`read the docs`: http://parallel-ssh.readthedocs.org/en/latest/

.. contents::

************
Installation
************

.. code-block:: shell

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

.. code-block:: python

from __future__ import print_function

from pssh.pssh_client 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:

.. code-block:: shell

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 <https://parallel-ssh.org/post/parallel-ssh-libssh2>`_ for a performance comparison of the available clients.

To make use of this new client, ``ParallelSSHClient`` can be imported from ``pssh.pssh2_client`` 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`` - once remaining features have been implemented.

The current default client will remain available as an option under a new name.

For example:

.. code-block:: python

from pprint import pprint
from pssh.pssh2_client 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 <http://parallel-ssh.readthedocs.io/en/latest/ssh2.html>`_ 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.

.. code-block:: python

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

:Output:
.. code-block:: python

0
0


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

.. code-block:: python

client.join(output)

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

.. code-block:: python

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:
.. code-block:: python

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:

.. code-block:: python

from pssh.utils import enable_host_logger

enable_host_logger()
client.join(client.run_command('uname'), consume_output=True)

:Output:
.. code-block:: shell

[localhost] Linux


SFTP
******

SFTP is supported natively.

To copy a local file to remote hosts in parallel:

.. code-block:: python

from pssh.pssh_client 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:
.. code-block:: python

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 <http://parallel-ssh.readthedocs.io/en/latest/advanced.html#sftp>`_ 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 <http://paramiko.org>`_
_____________________________________

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 <https://github.com/ParallelSSH/parallel-ssh/issues/83>`_.

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 <https://github.com/ronf/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 <https://www.eclipse.org/legal/eplfaq.php#USEINANOTHER>`_.

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

`Fabric <http://www.fabfile.org/>`_
___________________________________

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 <https://github.com/fabric/fabric/issues/1433>`_, 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 <https://www.ansible.com/>`_
_________________________________________

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 <https://parallel-ssh.org/post/ssh2-python/>`_ for what to expect from scaling SSH with threads, as compared `to non-blocking I/O <https://parallel-ssh.org/post/parallel-ssh-libssh2/>`_ 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 <https://github.com/ParallelSSH/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 <https://parallel-ssh.org/post/parallel-ssh-libssh2>`_.

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.ssh2_client.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 <https://github.com/libssh2/libssh2/pull/206>`_), agent forwarding (`PR pending <https://github.com/libssh2/libssh2/pull/219>`_) and Kerberos authentication - see `feature comparison <http://parallel-ssh.readthedocs.io/en/latest/ssh2.html>`_.


********
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 <https://groups.google.com/forum/#!forum/parallelssh>`_ setup for this purpose - both posting and viewing are open to the public.

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


Project details


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

Uploaded Source

Built Distributions

parallel_ssh-1.3.0-cp36-cp36m-win_amd64.whl (110.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

parallel_ssh-1.3.0-cp36-cp36m-win32.whl (100.8 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

parallel_ssh-1.3.0-cp35-cp35m-win_amd64.whl (109.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

parallel_ssh-1.3.0-cp35-cp35m-win32.whl (100.5 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

parallel_ssh-1.3.0-cp34-cp34m-win_amd64.whl (107.7 kB view details)

Uploaded CPython 3.4m Windows x86-64

parallel_ssh-1.3.0-cp34-cp34m-win32.whl (101.3 kB view details)

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

parallel_ssh-1.3.0-cp33-cp33m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.3m

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

Uploaded CPython 2.7mu

parallel_ssh-1.3.0-cp27-cp27m-win_amd64.whl (108.9 kB view details)

Uploaded CPython 2.7m Windows x86-64

parallel_ssh-1.3.0-cp27-cp27m-win32.whl (101.0 kB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

parallel_ssh-1.3.0-cp27-cp27m-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

parallel_ssh-1.3.0-cp27-cp27m-macosx_10_11_x86_64.whl (1.2 MB view details)

Uploaded CPython 2.7m macOS 10.11+ x86-64

parallel_ssh-1.3.0-cp27-cp27m-macosx_10_10_intel.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.10+ intel

File details

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

File metadata

File hashes

Hashes for parallel-ssh-1.3.0.tar.gz
Algorithm Hash digest
SHA256 3ff9af5b98a7feb5071faa08d3088281f191c8cab574a153e92a0d2d34603935
MD5 631967fb7529128f69b115356e50c82b
BLAKE2b-256 3dc464d60d557d559d04e5000fb8391554601dc73548b4869a2ad1681ea6ecb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 650343112e8de30eff74be43c8a73c752d4fc5138f351fa13933fc8d3edca471
MD5 64e503704f688b6f43a5d35fa034521b
BLAKE2b-256 a745d06bc5d2067a3260958962c31e0b1e18b8747471976d261c2ca533475ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 85bfb7d4f4f90c70b69e76dbd397c051acd6c1c5aed59545fc96182714a0f24d
MD5 5950c91319b1e8e50859a2f9ee93e6b1
BLAKE2b-256 a8dfd8f9f394d89f7eb4125f572e55f391cf33f864ea3e8bdfc27772291d9876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76ff13bc68a4956b90602181dd4d5b5dd5b952516f357974be3b87976e1dc535
MD5 9da772d1d13a63bb522eff6ef13cae81
BLAKE2b-256 f5574bf3b4c3c0d7164326dd1946712178be96ceb24821418f68aba1cef32c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3742623b2ccec381509e7e99805f4097d56437fb84afc55de5692524981d258c
MD5 c05b3e17115c2e06fa1cbe66bab7332e
BLAKE2b-256 8465829aa0eb2798565dd4764236db99413daab942f31dbd5b568af81c75aff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 812666b28b871ac0e8a4ed1e2cee177b07476186f72c6f3618fbbae8120ca5f9
MD5 a1fc347ead22d3552281d94c687c31d2
BLAKE2b-256 8d3cc7943fcac4917c21f337b1a28818ed1f1c6c29d0e21dccee8c49de9cb364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50422f7e7e25c7af5b7b247483eabe609d8e0eea841b6c41f21068054f303533
MD5 f12f3992afe9bae124b2749e9ea5b787
BLAKE2b-256 7cf23e891453bf0aa0eba7e7c68d6dee20e0ba9d0d1692d5f588dbfa74a565e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 e3511e90223dd0bf478e86f98bebaac5eaaf7df7bb1089568aac61cf5ef08553
MD5 e4e533275d19d632ab824c3a40303056
BLAKE2b-256 55bc1d8de0cd6811d310f3530f22226e962e33eb7fef808ffb6a23c97a586011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e4ce25108050df3a5e2006f7fc77c43f2f3a54e68c4ba81e7de291d79240ce2d
MD5 d70a6fdeaf3aa921ba0e4fabd33658ac
BLAKE2b-256 9e13aabf83787f27e283056ee413bd3d74508c3711aa8a0dabe1a9a056e2c43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5b0029cb333702f62a6bbec31e638b8c9b53330d3eef3f52989e49be005e96e6
MD5 5b918b04672fc5722f1d10fd8711574f
BLAKE2b-256 5086d359f1074e12b7a6261fa56fbe816406b5697f9d9f020ee4bfc054dd3efc

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.3.0-cp33-cp33m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp33-cp33m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bbe7eedb9e6c69f767e566de29a5efaf24f8bacab32c7f8484a5923aab7a8b91
MD5 a5560264b31b2ecc32c574714bc063c4
BLAKE2b-256 a0e5e0a2b3ed7d6ec7630162d365356e700ce6dc33f4a65d2ab2f71f9540fcde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c6661eff1009b1d3bb3da8253a81e00e6c9f39af26ae3312c80de1045219445f
MD5 d8c6e6d8baed9b0feee64f66cf952841
BLAKE2b-256 80c389006c4cbb52c51cd31d0c1afb12f3f4db326a9d958981f97843ccc6a126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e58b884377a5d216c7d3e509f26de193cafa59b518e0a549cbb62a98b077e365
MD5 97d9a37b49e5bc022b48b7fb4a09aa94
BLAKE2b-256 dff6c227a7042272d2cec95a9c5f322d6f1904e7c8e871b3b44b7a074c551861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 faef396852cade18fec7caa600e2f86ecf1f9c379e848a0c31c9400db3e18db5
MD5 44dbf4441e15aa0f8a8dc799cdf79c07
BLAKE2b-256 34c68cd11f45329e9336d25e15e61ae48d4bfcd0d787715377cca9f1ce8c3d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9213e550289397395843342820d20809b6cfba9a36691715e3817da2414f4323
MD5 1f430a721cd2a2c18cb547736fec784c
BLAKE2b-256 c1feeae4243db894d157072334dddbf848c5e2903fb40f062025740b1aa1578a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adb0516dc0098778ad3a0550a0f55703abf85e3b3ebcb4f3f4d3b28e38690e68
MD5 4717ee0dcc5f6635f0489b58330c3683
BLAKE2b-256 75b1acce7adfb89748acdc746f397b91e2e3784b8be371da68eb6f5e40447953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 72d6f5eb1fe8fc5225d1ecdebf83a0bc0523739d3f3c2a034e789ad3fd7b2f0a
MD5 73a32948bfb1a41a6f526eeab4c89f18
BLAKE2b-256 1a69e7aba90cd7ab5fa7c8e7d9282b8ba93a1597e0721eb272b13492933c64a7

See more details on using hashes here.

File details

Details for the file parallel_ssh-1.3.0-cp27-cp27m-macosx_10_10_intel.whl.

File metadata

File hashes

Hashes for parallel_ssh-1.3.0-cp27-cp27m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 89fe1d87cf430226cb33e3a45ec67551d77673bf7016af70088ead161c9a8f09
MD5 040bf3bacba8d40c1d7a96e021a0658f
BLAKE2b-256 cc747678cd1cf266990de786b2d0e7e73be22a79d691ef5fc9ce41f6a0b33737

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