Configurable shell command execution in Python
Project description
shpyX - Configurable shell command execution in Python
Installation
Install with pip
:
pip install shpyx
Usage
TODO
Motivation
Running shell commands in Python is often useful when the user is interested in combining shell and Python logic, or managing the outcome of shell commands in Python.
The Python standard library provides a simple way of doing so via the subprocess
module:
import subprocess
cmd = "ls -l"
p = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
cmd_stdout, cmd_stderr = p.communicate()
While this is sufficient for many cases, we might also want to:
- Inspect the return code
- Handle commands that are stuck (due to blocking I/O, for example)
- Handle signals by the main Python process
- Add formatted printing of every executed cmd and it's output
- etc
The goal of this project is to provide a friendly API for running shell commands, with emphasis on configurability.
You might also want to check out other packages that deal with similar problems, like bash or invoke.
Security
One must be cautious when running shell commands from Python, as the spawned shell gains the same permissions as Python process.
Check an untrusted command twice before running it!
Contributing
TODO
Linters and tests
TODO
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.