Code Monkey home page Code Monkey logo

pypssh's Introduction

pypssh

Language Github Workflow Status Version LICENSE

Github issues Github forks Github stars Page Views Release Download Total

pypssh is a high-performance and user friendly ssh tool. It can efficiently execute commands, execute script files, and transfer files.

Features

  • Supports four common usages of ssh:
    • execute: remote execute single-line commands.
    • execfile: remote execution of local scripts;
    • put: upload of files;
    • get: downloaded of files;
  • Supports sudo.
  • Support to declare multiple hosts in the configuration file by means of lists and slices.
  • Support host selection based on host name, label, label logical expression.
  • Supports jinja2 template redefinition the output of all subcommands on selected host.
  • Support port test and ssh connection test on selected host.

Installation

You can download pre-built binaries for CentOS 8 (mainly dependent on higher versions of GLIBC) from GitHub Release Page.

It can also be install pypssh by compiling:

$ git clone  https://github.com/witchc/pypssh 
$ cd pypssh
$ python3 -m venv .venv  # requires python 3.7 or higher
$ source .venv/bin/activate
$ pip install -r requirement.txt
$ ./script/build/package_exec # used pyinstaller build single binary file.
$ ./dist/pypssh --version

Usage

$ pypssh --help
Usage: pypssh [OPTIONS] COMMAND [ARGS]...

Options:
  -i, --inventory PATH            inventory.yaml path
  -l, --log-level [NOTSET|DEBUG|INFO|WARN|ERROR|FATAL]
  -t, --target TEXT               Host IP address or label expression
  --help                          Show this message and exit.

Commands:
  config    config management
  execfile  execute script file
  execute   execute command
  key       key management
  ls        list host
  ping      ping hosts
  pull      download file example: pypssh -t 192.168.31.1 put...
  put       upload file example: pypssh -t 192.168.31.1 put /etc/yum.conf...
  version   print version

# create a default configuration file
$ pypssh config dump-default
# or according to the old version of the configuration conversion to the new version of the configuration file
$ pypssh config convert config/old_inventory.conf  > /root/.pypssh/inventory/inventory.yaml

# use -t to select the host to execute the command
$ pypssh -t 192.168.1.100 execute -e NAME=peter 'echo hello $NAME'

# use -t to select host slices and list the hosts in the configuration
$ pypssh -t 192.168.3[2:90].10[5:9] ls

# use -t to select the host slice with a list and list the hosts in the configuration
$ pypssh -t 192.168.32.1[5:9,32,35,38] ls

# use -t to select the host with the master tag to upload files
$ pypssh -t master put [localfile] [remotefile]

# use -t to select the host with the mysql==master tag to upload files
$ pypssh -t mysql==master get [remotefile] [localdir]

# use -t to select the host where the complex label expression evaluates to True to upload files
$ pypssh -t 'ds01 and (redis==master or mysql)' execfile test.py

Configure

Sample configuration:

192.168.31.133:
  port: 22
  username: mysql
  password: bXlzcWwkMTIz
  tags:
    mysql: master
# 192.168.31.135 ~ 192.168.31.138
192.168.31.13[5:9]:
  port: 22
  username: mysql
  password: bXlzcWwkMTIz
  tags:
    mysql: master
# 192.(22~25).(95~98).(95~98)
192.[22:26].[95:99].[95:99]:
  port: 22
  username: mysql
  pkfile: "/root/.ssh/id_rsa"
  pkpasswd: ""
  sudo: false
  tags:
    mysql: master
# 192.168.31.[21,22,23,24,28,29]
192.168.31.2[1:5,8,9]:
  port: 22
  username: mysql
  pkfile: "/root/.ssh/id_rsa"
  pkpasswd: ""
  sudo: false
  tags:
    mysql: master

pypssh developer

dependency

runtime dependency:

  • paramiko/scp: Provide ssh/scp client support.
  • jinja2: Provide template rendering support when outputting command results.
  • marshmallow_dataclass: Provide support for dataclass conversion to dict;
  • click: Provide cli support.
  • PyYAML: Provide yaml configuration file parsing support.
  • tenacity: Provide retry support.

development dependency:

  • altgraph: Provide alt module debugging support.
  • autopep8: Provide code formatting support.
  • PyInstaller:Provide binary program release support.

Promise

  • The import statement is written in accordance with the following specifications:
    • Built-in packages are listed in front of dependent packages.
    • The short package name comes before the long.
    • import ... comes before from ... import
  • By default, ~/.pypssh/ is used as the data directory to store its own data and configuration files.
  • The output of the subcommand uses echo(output_mode:str, cls, datas, template) or click.echo(yaml.dump({{result}}, allow_unicode=True)).
  • Use get_ssh_logger(host) in the ssh task function to get the log instance, so that the host name can be printed in the header of each log.

Reference

ssh-protocol - SSH.COM
tenacity document
click document

License

This project is under the MIT License. See the LICENSE file for the full license text.

Thanks

  • shields: provides a beautiful badge.
  • axiom: provides a beautiful analysis image.

pypssh's People

Contributors

snyk-bot avatar souloss avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

pypssh's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.