python-command-runner 1.6.0-2 source package in Ubuntu

Changelog

python-command-runner (1.6.0-2) unstable; urgency=medium

  * No change rebuild so source-only version is in archive.

 -- Harlan Lieberman-Berg <email address hidden>  Tue, 13 Feb 2024 14:04:42 -0500

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 Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-command-runner_1.6.0-2.dsc 2.3 KiB 6b7d138ee9e6f662e8781efde814b453fcfc399434082c1029fb9e1ee97045ec
python-command-runner_1.6.0.orig.tar.gz 38.0 KiB 973b7552186b3ea42b04ab1198f86a86d3887c5942b5e42aa3ab19eab3aeb740
python-command-runner_1.6.0-2.debian.tar.xz 2.6 KiB 1a25701ee12377ecb9c5bc632896a3aa78925fa4ab8ea262b289a3d2b312222d

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