python-command-runner 1.7.0-1 source package in Ubuntu
Changelog
python-command-runner (1.7.0-1) unstable; urgency=medium * Team Upload * Add d/gbp.conf * New upstream version 1.7.0 * Add dependency on python3-setuptools (Closes: #1080732) * Use dh-sequence-python3 -- Alexandre Detiste <email address hidden> Sat, 12 Oct 2024 14:00:17 +0200
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Plucky | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
python-command-runner_1.7.0-1.dsc | 2.2 KiB | 44f494ebd2ce999929ef1123e494b691b305df5e4d41288cf37dfd7a947b712a |
python-command-runner_1.7.0.orig.tar.gz | 38.4 KiB | 0e37ab943ea577ac7fb55c5b1528bdb8339cc8b4ade71d48aac209da3b7d1f48 |
python-command-runner_1.7.0-1.debian.tar.xz | 2.7 KiB | 2ec66eef634ba10d6a5063353a11376ab022325aa69be9fa3ee91f411187dd4e |
Available diffs
- diff from 1.6.0-2 to 1.7.0-1 (4.5 KiB)
No changes file available.
Binary packages built by this source
- python3-command-runner: platform-agnostic external command execution library for Python
command_runner's purpose is to run external commands from Python, just like
subprocess on which it relies, while solving various problems a developer may
face among:
- Handling of all possible subprocess.popen / subprocess.check_output
scenarios / Python versions in one handy function without encoding or
timeout hassle
- Allow stdout/stderr stream output to be redirected to callback functions /
output queues / files so you get to handle output in your application while
commands are running
- Callback to optional stop check to stop execution from outside command_runner
- Callback with optional process information to allow control of the process
from outside command_runner
- Callback when finished to ease thread usage
- Optional process priority and io_priority settings
- System agnostic functionality, the developer shouldn't carry the burden of
Windows & Linux differences
- Optional Windows UAC elevation module compatible with CPython, PyInstaller,
and Nuitka
- Optional Linux sudo elevation compatible with CPython, PyInstaller & Nuitka