--- id: fancy-subprocess version: "3.0" license: MIT license_treatment: permissive maintenance: active --- # fancy-subprocess — subprocess.run() with formatted output, detailed error messages and retry capabilities License: permissive · Maintenance: active · Downloads: 147.6K/mo ## 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 above — 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 pip install fancy-subprocess uv add fancy-subprocess 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_current - Install friction: low - Maintenance: active - Downloads: 147.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags subprocess wrapper with output formatting, command execution with retry, subprocess error handling, formatted command output, subprocess with detailed errors, shell command runner, process execution helper, subprocess-wrapper, error-handling, retry-logic [View on SkillFed](https://skillfed.io/packages/fancy-subprocess) · [View on PyPI](https://pypi.org/project/fancy-subprocess/)