Skip to main content

A flexible framework for building and executing command pipelines in Python

Project description

Piperun - Command Pipeline Framework for Python

piperun is a flexible framework for building and executing command pipelines in Python. It provides tools for running shell commands, creating task pipelines, and executing operations in parallel.

Overview

piperun simplifies the process of building complex command workflows by providing:

  • Command construction and execution with detailed control
  • Sequential pipeline execution
  • Parallel processing capabilities
  • Integration with Dask for distributed computation

piperun was designed with the following principles in mind:

  1. Simplicity: Easy to use with intuitive interfaces
  2. Flexibility: Works with any callable or command
  3. Composability: Build complex workflows from simple pieces
  4. Performance: Efficient execution with parallel processing capabilities
  5. Control: Detailed control over execution flow

Installation

Install piperun using pip (not yet available):

pip install piperun

Install from source in editable mode:

git clone https://github.com/franioli/piperun.git
cd piperun
pip install -e .

Core Components

Command

The Command class provides an intuitive interface for constructing and executing shell commands:

from piperun import Command

# Create a simple command
cmd = Command("ls -l")
cmd.run()

# Add arguments dynamically
cmd = Command("parallel_stereo")
cmd.extend("image1.tif", "image2.tif", t="rpc", max_level=2)
cmd.run()

Key features:

  • Handles both positional and keyword arguments
  • Converts Python arguments to command-line format
  • Provides execution timing
  • Captures command output
  • Supports boolean flags and various parameter formats

Pipeline

The Pipeline class enables chaining multiple processing steps:

from piperun import Pipeline, Command

# Create a pipeline
pipeline = Pipeline()

# Add steps
pipeline.add_step(Command("mkdir -p output"))
pipeline.add_step(Command("convert input.jpg output/output.png"))

# Execute all steps
pipeline.run()

Features:

  • Sequential execution of steps
  • Control for running specific steps or ranges
  • Support for any step with a run() method
  • Nested pipeline capability

DelayedTask

The DelayedTask class integrates with Dask for delayed execution:

from piperun import DelayedTask

# Create a delayed task
def process_data(x):
    return x * 2

task = DelayedTask(process_data, 10)
result = task.compute()  # Executes when needed

Features:

  • Lazy evaluation of tasks
  • Execution timing measurement
  • Visualization of task graphs

ParallelBlock

The ParallelBlock class enables concurrent execution of multiple steps:

from piperun import ParallelBlock, Command

# Create commands
commands = [
    Command(f"process_file {i}.txt") 
    for i in range(10)
]

# Run in parallel
with ParallelBlock(commands, workers=4) as block:
    block.run()

Features:

  • Automatic Dask cluster management
  • Configurable worker count
  • Support for both Command and DelayedTask objects

Advanced Usage

Pipeline Composition

Pipelines can be composed of various step types, including other pipelines:

# Create nested pipelines
preprocessing = Pipeline([
    Command("clean_data input.csv"),
    Command("validate_data input.csv")
])

processing = Pipeline([
    Command("process_data input.csv output.csv")
])

# Combine pipelines
main_pipeline = Pipeline()
main_pipeline.add_step(preprocessing)
main_pipeline.add_step(processing)
main_pipeline.run()

Parallel Execution with Custom Worker Count

# Run operations in parallel with custom worker count
parallel_tasks = ParallelBlock(workers=8)

for file in input_files:
    parallel_tasks.add_step(Command(f"process {file}"))

parallel_tasks.run()

Flow Control in Pipelines

# Run specific pipeline segments
pipeline = Pipeline([...])

# Run only step 3
pipeline.run_step(3)

# Run from step 2 to the end
pipeline.run_from_step(2)

# Run up to step 4 (not including step 4)
pipeline.run_until_step(4)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

piperun-0.1.0.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

piperun-0.1.0-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file piperun-0.1.0.tar.gz.

File metadata

  • Download URL: piperun-0.1.0.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piperun-0.1.0.tar.gz
Algorithm Hash digest
SHA256 364b3b452f14b37814fa2f82129b3d93937af253d215c20475717ac2c8840158
MD5 de810834a9eb5133eeae438b5d6ac7dc
BLAKE2b-256 607bfaf965d79bf9fd806f001deb21d75ed205b14c7d327f21e99e8b25a907cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for piperun-0.1.0.tar.gz:

Publisher: python-publish.yml on franioli/piperun

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file piperun-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: piperun-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piperun-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1f3aae8c1c7ae5ef9f050b151a5aec891218974501e2d774f4d73d2964f33e76
MD5 b1bcec0f934d84f8b3e2fdd00dd50942
BLAKE2b-256 063429d69e6c37f76e83a560b0134c10202b36935d544dba656d06ff1957533e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piperun-0.1.0-py3-none-any.whl:

Publisher: python-publish.yml on franioli/piperun

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page