Skip to main content

Shellby: Simple shell access from Python

Project description

Features:

  • Simple access to local or remote (via asyncssh) shells

  • Neat legible output from multiple hosts

Simple access to bash:

import shlex
from tooler import Tooler

tooler = Tooler()

@tooler.command
def free(mount='/'):
    for result in tooler.bash('df -mah | grep %s' % shell_quote(mount + '$')):
        fs, blocks, use, available, use_pct, mnt = shlex.split(result.stdout)
        result.host.print('Used %s (%s) of %s [%s]' % (use, use_pct, mnt, fs))

if __name__ == '__main__':
    tooler.main()
$ ./disk.py free --mount=/
local$ df -mah | grep '/$'
local> /dev/mapper/ubuntu--vg-root  102G   69G   28G  72% /
local: []
local: Used 69G (72%) of / [/dev/mapper/ubuntu--vg-root]

Subcommands made easy:

from tooler import Tooler
from tooler.library import (named, SshConfig)

import disk

tooler = Tooler()

tooler.add_submodule('disk', disk.tooler)
tooler.add_submodule('named', named.tooler)

if __name__ == '__main__':
    named.add_hosts(SshConfig().get_hosts())
    tooler.main(hosts=[])

Library of awesome sauce:

$ ./tool.py named:nginx* disk.free
$ s named:nginx* free
nginx1$ df -mah | grep '/$'
nginx2$ df -mah | grep '/$'
nginx3$ df -mah | grep '/$'
nginx3> /dev/sda1        59G   37G   22G  64% /
nginx3: []
nginx1> /dev/sda1        59G   37G   22G  64% /
nginx1: []
nginx2> /dev/sda1        59G   37G   22G  64% /
nginx2: []
nginx1: Used 37G (64%) of / [/dev/sda1]
nginx2: Used 37G (64%) of / [/dev/sda1]
nginx3: Used 37G (64%) of / [/dev/sda1]

Thanks required:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shellby-0.0.0.tar.gz (3.2 kB view hashes)

Uploaded Source

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