simple command-line wrapper
Project description
Note: Work in Progress.
This lib aims to provide a Human friendly interface for subprocess.
If you need piped subprocesses, give envoy a try.
Usage
import shcmd
with shcmd.cd("/tmp"):
# get result directly
assert shcmd.run("pwd") == "/tmp"
# get streamed result packed in a generator
streamed = shcmd.run("ls", stream=True)
for filename in streamed.iter_lines():
print(filename)
# get full stdout/stderr
print(streamed.stdout)
print(streamed.stderr)
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.
Source Distribution
shcmd-0.5.4.tar.gz
(10.6 kB
view details)
File details
Details for the file shcmd-0.5.4.tar.gz
.
File metadata
- Download URL: shcmd-0.5.4.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b8c1af5dbc9f9009517b1b1a0653ee2fbe5449b1de77bb599e5df704668ba5c |
|
MD5 | 810c582b0b793b2ad8785fa9f81991da |
|
BLAKE2b-256 | dd0c0cfc1436037aa15e47da4ec38882984525100b2bc30e1ad6e0a04698442d |