Metadata-Version: 1.1
Name: pypsh
Version: 0.1.0
Summary: remotely execute commands in parallel with ssh on    hostnames that match a 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.py hostregex cmd
        
        E.g.:
        
            ./pypsh.py "role\d+\.customer\.your\.domain" "uptime"
        
        This matches every host in the `known_hosts` file against the regex and executes the command.
        
        
        ## Installation & Development:
        
        For now:
        
            git clone https://github.com/mfussenegger/pypsh.git
            cd pypsh
            mkvirtualenv pypsh
            pip install -r requirements.txt
        
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
