Metadata-Version: 2.1
Name: sshreader
Version: 5.0.3
Summary: Multi-threading/processing wrapper for Paramiko
Home-page: http://sshreader.readthedocs.io/
Author: Jesse Almanrode
Author-email: jesse@almanrode.com
Project-URL: Documentation, http://sshreader.readthedocs.io/
Project-URL: Source, https://bitbucket.org/isaiah1112/sshreader/
Project-URL: Tracker, https://bitbucket.org/isaiah1112/sshreader/issues
Platform: Linux
Platform: Darwin
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.lesser

# [sshreader][]

## Overview

[SSHreader][] is a Python Module for multiprocessing/threading ssh connections in order to make ssh operations
across multiple servers parallel.  It utilizes the [Paramiko](http://www.paramiko.org/) module for its ssh client.

In order to maintain the widest range of compatibility, [SSHreader][] is currently tested using the following versions of
Python:

* Python3.7
* Python3.8
* Python3.9
* Python3.10
* Python3.11

## License

[SSHreader][] is released under [GNU Lesser General Public License v3.0][],
see the file LICENSE and LICENSE.lesser for the license text.

## Installation

The most straightforward way to get the [SSHreader][] module working for you is:

```commandline
pip install sshreader
```

This will ensure that all the requirements are met.

### Development Installation

If you are wanting to work on development of [SSHreader][] perform the following:

```commandline
make install
```

To ensure all development requirements are met. This will allow you to build the Sphinx Documentation for [SSHreader][]
or run the unit/integration tests!

## Documentation

The documentation for [SSHreader][] can be found [here](https://sshreader.readthedocs.io)

### Building Docs

If you have installed the requirements for [SSHreader][] you can build its Sphinx Documentation simply by:

```commandline
make docs
```

Then simply open `docs/build/html/index.html` in your browser.

## Contributing

Comments and enhancements are very welcome.

Report any issues or feature requests on the [BitBucket bug
tracker](https://bitbucket.org/isaiah1112/sshreader/issues?status=new&status=open). Please include a minimal
(not-) working example which reproduces the bug and, if appropriate, the
 traceback information.  Please do not request features already being worked
towards.

Code contributions are encouraged: please feel free to [fork the
project](https://bitbucket.org/isaiah1112/sshreader) and submit pull requests to the develop branch.

## Extras

Included with sshreader is a binary called **pydsh** (generally installed in /usr/local/bin/).  This works very similar to
[pdsh](https://computing.llnl.gov/linux/pdsh.html) but uses sshreader at its core to perform ssh commands in parallel
and return the results.  The output of *pydsh* can also be piped through the **dshbak** tool that comes with pdsh.

Pydsh uses [hostlist expressions](https://www.nsc.liu.se/~kent/python-hostlist/) to get its list of hosts
to process.


[GNU Lesser General Public License v3.0]: http://choosealicense.com/licenses/lgpl-3.0/ "LGPL v3"

[sshreader]: https://bitbucket.org/isaiah1112/sshreader "SSHreader Package"
