skillfed

fancy-subprocess

subprocess.run() with formatted output, detailed error messages and retry capabilities

fancy-subprocess v3.0 147.6K downloads/30d#11,056 on PyPI0
Permissive license MIT Active released

What it is and what it does

fancy-subprocess is a wrapper around Python's subprocess.run() that enforces a stricter, more user-friendly interface for running shell commands. It always captures and prints command output line-by-line, combines stdout and stderr into a single stream, and treats text output as the default. On failure, it raises a detailed RunError exception that includes the command, exit code, and on Windows, recognized NTSTATUS error names or hex codes; on Unix, signal names. It supports customizable print functions for both informational messages and command output, allowing integration with logging systems or UI frameworks.

The package adds retry capabilities with exponential backoff, environment variable overrides, working directory changes, and configurable exit code success criteria. It handles OSError exceptions (e.g., executable not found) by converting them to RunError, and provides fine-grained control over output handling—trimming whitespace, replacing Unicode replacement characters, and capping output size. The return value is a RunResult object with exit_code and output properties, making it straightforward to inspect results programmatically.

Use it for:

  • Build scripts or CI/CD pipelines that need formatted, real-time command output with automatic retry on transient failures.
  • Testing frameworks that run external tools and need detailed error messages with exit codes and signal names.
  • System administration tools that execute commands and must capture combined stdout/stderr with custom logging.
  • Cross-platform applications (Windows, macOS, Unix) that need consistent subprocess error reporting with OS-specific details.
  • Long-running processes where retry logic with exponential backoff reduces flakiness without manual intervention.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Runs shell commands with formatted output, detailed error reporting, and built-in retry logic, wrapping subprocess.run() with customizable print functions and exception handling.

Yes. The package solves a genuine pain point—subprocess.run() requires boilerplate for output capture, error handling, and retry logic. It is actively maintained, has no known vulnerabilities, uses a permissive MIT license, and supports current Python versions (3.10–3.14). Install friction is low. Use it if you run external commands and want cleaner error messages, formatted output, or built-in retries.

Install

fancy-subprocess on PyPI

pip

pip install fancy-subprocess

uv

uv add fancy-subprocess

poetry

poetry add fancy-subprocess

Installing fancy-subprocess

Before you install

Low install friction with a pure-Python wheel and five runtime dependencies. Actively maintained with a recent release; last commit on 2026-05-17 and first release on 2025-05-11 indicate ongoing development.

License in practice

MIT license (permissive) allows use in most projects without restriction, including commercial and proprietary software.

Quickstart

from fancy_subprocess import run

result = run(['echo', 'hello'])
print(result.output)

Requires Python 3.10 or later.

Verify before relying

  • Whether retry backoff and sleep parameters are suitable for typical use cases without tuning.
  • Performance characteristics when handling very large command outputs near the 10,000,000 character default limit.
  • Behavior of environment variable overrides with special or system-critical variables.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 5 — ntstatus, oslex, pathext, typeguard, typing-extensions
Maintenance actively maintained — 89 days since the last release
Last repo commit
First released
Downloads 147,648/month — #11,056 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: fancy_subprocess-3.0-py3-none-any.whl

License :: OSI Approved :: MIT LicenseOperating System :: MacOSOperating System :: Microsoft :: WindowsOperating System :: OS IndependentOperating System :: POSIXProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

subprocess wrapper with output formattingcommand execution with retrysubprocess error handlingformatted command outputsubprocess with detailed errorsshell command runnerprocess execution helper
subprocess-wrappererror-handlingretry-logic

More Software Development packages