Importable CLI-passthrough with bells and whistles.
Project description
README
Install
Install with pip install cli-passthrough
/ pip install -e .
if you have this repo.
How to Use
From the terminal:
$ cli-passthrough echo 'hi'
hi
$ echo 'hi'
hi
$ cli-passthrough python --error
Unknown option: --
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Try `python -h' for more information.
$ python --error
Unknown option: --
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Try `python -h' for more information.
From Python:
In [1]: from cli_passthrough import cli_passthrough
In [2]: cli_passthrough("echo 'hi'")
hi
Out[2]: 0
In [3]: cli_passthrough("python --error")
Unknown option: --
usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ...
Try `python -h' for more information.
Out[3]: 2
What does it do?
This project provides an entry point cli-passthrough
in the terminal that accepts any amount of parameters, and runs those parameters as it's own command. Except in a few special cases, this will output to the terminal exactly what the command would have, including any formatting done with escape sequences. Both the combined stdout and stderr are logged, with order preserved, in logs/history.log
, and the stderr by itself is logged in /logs/stderr.log
. These log files are written to in realtime. The output to the terminal is also in realtime. The original intent was to dump all output back to the screen, while saving both stdout and stderr. Future work will be to return those outputs to Python as well.
This project was motivated by making a wrapper on another application which needed to be used over the CLI. I wanted to also use the wrapper from the CLI as well. I wanted to see the output of the program I was invoking in real-time, in the same formatting, and log everything. In other words, I wanted the following:
- ANY COMMAND: Run nearly any command given to it.
- FLEXIBLE LOGGING: Capture stdout and stderr independently for flexible logging.
- ORDER PESERVATION: Preserve order of stdout and stderr
- REALTIME OUTPUT: Output to the screen in realtime, i.e. don't wait for the command to exit before dumping to the screen.
- EXIT STATUS: Capture exit code
- FORMATTING PRESERVED: Preserve ANSI escape sequences so most things are still formatted as if not run through this passthrough.
1 | 2 | 3 | 4 | 5 | 6 | note | |
---|---|---|---|---|---|---|---|
os.system | Y | N | Y | Y | Y | Y | Doesn't capture output at all |
os.popen | N | N | Y | N | N | Y | Deprecated & obsolete |
os.exec* | Y | N | - | N | N | N | Really not the intended use |
pexpect | Y | N | Y | Y | Y | Y | Bad logging |
subprocess.popen + threads | Y | Y | Y | N | Y | Y/N | Doesn't have real-time output because it's often dependent on buffer flushes of blocks. |
subprocess.popen + pty | Y | Y | Y | Y | Y | Y | We got it! |
Known Limitations
This implementation of subprocess.popen + pty currently has the following limitations:
-
It doesn't run every command. Commands that need input from the user do not work, such as
ssh
oripython
. -
It makes assumptions about the terminal size. It would be better if it detected the terminal the python is ran in, and use the same dimensions.
This is very much largely adapted (copied) from this SO post. I just wrapped it up into an importable function, gave it a CLI itself, and made basic logging to illustrate the point. Feel free to copy/paste/tweek it yourself.
If you find something better please let me know! I'd be more than happy to upgrade or replace this. This is simply the best I've found so far.
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
Built Distribution
Hashes for CLI-passthrough-0.1.3.linux-x86_64.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b71b7f777d4b18ed3b6d4b232e9b33a3e065291bc5e254c6df0b443a3eda617f |
|
MD5 | b1ab4cb63382e7309c1b071241a7a4e4 |
|
BLAKE2b-256 | f673a26855d13e32b14b00d2f093a1de881275f2a17146ca502bc076d7de7280 |
Hashes for CLI_passthrough-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab407862f520baacfedff6ab6bcb9985f56832e6bb1d2f7deb111d9bd305deb5 |
|
MD5 | ba9b222f5a4de3f1e08f36db6c2cb0ef |
|
BLAKE2b-256 | 53f9fab7e9a395d0f7825d6d19662ebad060ac3f0686d4b9b8ae70d1dd1a8212 |