Downloads, Installs in paralell - A utility to run multiple shell command sequences (e.g., installations) in parallel with status updates.
Project description
rapidinstall
A simple Python utility to run multiple shell command sequences (e.g., complex installations, downloads, build steps) in parallel, providing status updates and aggregated output directly to the console.
Features
- Parallel Execution: Runs multiple tasks concurrently using
subprocess. - Real-time Output: Captures stdout and stderr from tasks.
- Status Updates: Periodically shows which tasks are still running and recent output.
- Clear Formatting: Presents startup, status, and completion information in distinct blocks.
- Simple API: Easy to integrate into existing Python scripts.
- Pure Python: Relies only on the standard library.
Installation
pip install rapidinstall
Example: first look
import rapidinstall
my_tasks = [
{'name': 'Pip', 'commands': 'pip install this that'},
{'name': 'Download MyFile', 'commands': "wget https://my.file/is_here"}
]
rapidinstall.install(my_tasks)
Downloads and Installs in paralell and updates you on the progress
Example: typical
import rapidinstall
clone_and_install = '''clone https://github.com/tomOfBerlin/rapidinstall
cd rapidinstall
python setup.py install
cd ..'''
my_tasks = [
{'name': 'Pip', 'commands': 'pip install this that'},
{'name': 'Download MyFile', 'commands': "wget https://my.file/is_here"},
{'name': 'Clone and install Dependencies', 'commands': clone_and_install}
]
rapidinstall.install(my_tasks)
You can execute commands sequentially, great for git installs.
Example: silent
# Completely silent - verbose is turned on by default
rapidinstall.install(my_tasks, verbose=False)
# Updates every 60 seconds
rapidinstall.install(my_tasks, update_interval=60)
Example: advanced
# Import directly from the run module (previously executor)
from rapidinstall.run import run_tasks
# You can also access constants like:
# from rapidinstall.run import DEFAULT_STATUS_UPDATE_INTERVAL
task_a = {'name': 'Task A', 'commands': 'echo "Executing A"; sleep 1'}
task_b = {'name': 'Task B', 'commands': 'echo "Executing B"; sleep 1'}
print("\n--- Starting Advanced Example (run_tasks) ---")
# Pass arguments directly to run_tasks
results_advanced = run_tasks(todos=[task_a, task_b], verbose=True, update_interval=10)
print("--- Advanced Example Finished ---")
print("\n--- Task Execution Summary (Advanced) ---")
print(results_advanced) # Print the raw results dictionary
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rapidinstall-0.9.0.tar.gz.
File metadata
- Download URL: rapidinstall-0.9.0.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
149d97bafedb0c12b287876ca5c875a1eb40c58084f0329a6614820cb66afa35
|
|
| MD5 |
d8055c639d96e336fa350da950874e87
|
|
| BLAKE2b-256 |
8ba00ffc75e0c77488ce906c7c6e89c39fbcb1e7f59a67b989b948b5981838bc
|
File details
Details for the file rapidinstall-0.9.0-py3-none-any.whl.
File metadata
- Download URL: rapidinstall-0.9.0-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d55cc84744faaa96bb2b3cac0bb5c482cf3165b0ffe732bb7fa30f57bed4c5dc
|
|
| MD5 |
f74d0ef12a2923c4f906458ab78e0db0
|
|
| BLAKE2b-256 |
6b9ca70cfbae52a7dc89c062745a55fbd30effc031e91e16ab3fc7ca6ca8ef20
|