Metadata-Version: 1.1
Name: pypsh
Version: 0.3.0
Summary: pypsh - cli for parallel ssh command execution on all known hosts that match a
given regex.
Home-page: https://github.com/mfussenegger/pypsh
Author: Mathias Fußenegger
Author-email: pip@zignar.net
License: MIT
Description: 
        =======================
        Parallel SSH with Regex
        =======================
        
        Usage::
        
            pypsh hostregex cmd
        
        E.g.::
        
            pypsh "role\d+\.customer\.your\.domain" "uptime"
        
        This matches every host in the `known_hosts` file against the regex and
        executes the command.
        
        Installation
        ============
        
        ``Pypsh`` can be installed using ``pip``::
        
            pip install pypsh 
            
        Development
        ===========
        
        To work on ``pypsh`` checkout the git repository, create a
        virtual environment and install the dependencies::
        
            git clone https://github.com/mfussenegger/pypsh.git
            cd pypsh
            mkvirtualenv pypsh
            pip install -r requirements.txt
        
        Sometimes it is useful to point the ``pypsh`` command to the local development
        branch::
        
            pip install --upgrade --force-reinstall --editable .
        
        But usually it is sufficient to invoke it like this::
        
            python pypsh/main.py
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: System :: Networking
