Skip to main content

an easy to execute shell commands in Python.

Project description

easysh

an easy to execute shell in python

Requirements

Python 3.3 +

Installation

pip install easysh

Usage

from easysh import Shell

output= Shell.exec('ls -l')
print(output)

asyncio

from easysh import Shell

output= await Shell.aexec('ls -l',cwd='/var')
print(output)

Real-time output

from easysh import Shell

with Shell.create('ls -l') as std:
    for line in std:
        print(line)

asyncio Real-time output

from easysh import Shell

async with Shell.create('ls -l') as std:
    async for line in std:
        print(line)

execute shell command with timeout

from easysh import Shell

# raise subprocess.TimeoutExpired
await Shell.aexec('python',timeout=3)

error handing

from easysh import Shell, ShellError

try:
    Shell.exec("unknown command")
except ShellError as e:
    print(e)

capturing the output and error streams

from easysh import Shell

# capturing the output and error streams
with Shell.create("unknown command", raise_on_stderr=False) as std:
    output = std.read()
    print(output)
    print(std.has_errors)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

easysh-1.0.0-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

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