Skip to main content

Very basic pipelining toolbox

Project description

MicroPype

A tiny package to create very basic pipeline executing command lines and/or calling python functions.

Install

pip install micropype

API

Here are the two mains functions you need:

cached_run

Use it to execute a cammand line.

Arguments:

  • cmd: Command line
  • out_files: One or a list of file path(s) that are created by the command.
  • title:(str, default: None) - A title
  • log: (str, default: None) - A path to a log file (text file)
  • versions: (dict, default: None) - A dictionnary giving all the versions that must be logged
  • raise_errors: (bool, default: True) - Wether to raise python error if the command failed (if True) or just print error in the console and continue (if False)

cached_function_call

Use it to call a python function.

Arguments:

  • func: A callable python object (function)
  • args: List of the arguments
  • out_files: One or a list of file path(s) that are created by the command.
  • title:(str, default: None) - A title
  • log: (str, default: None) - A path to a log file (text file)
  • versions: (dict, default: None) - A dictionnary giving all the versions that must be logged
  • raise_errors: (bool, default: True) - Wether to raise python error if the command failed (if True) or just print error in the console and continue (if False)

Configuration file

Command line

Example

Here is an example of simple configuration file:

{
    "steps": {
        "do_ls": true,
        "do_myfunction": false
    },
    "subconfig":  [
        {"name": "firstone", "file": "/dflf.txt", "values": [0, 3, 5, 10]},
        {"name": "firstone", "file": "/dflf.txt"},
    ]
}

And then the pipeline:

from micropipe import cached_run, cached_function_call

log = "mylog.txt"

out_f = "lsOutput.log"
cached_run(
    f"ls -lrt >> {out_f}",
    out_f,
    "Listing current folder items",
    log_f
)

cached_function_call(
    myfuntion,
    [arg1, arg2],
    [file_1, file_2],
    title=f"Executing a python function",
    log=log_f
)

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

micropype-0.3.0.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

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

micropype-0.3.0-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

Details for the file micropype-0.3.0.tar.gz.

File metadata

  • Download URL: micropype-0.3.0.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.6

File hashes

Hashes for micropype-0.3.0.tar.gz
Algorithm Hash digest
SHA256 788246d511ecbd28f6089dd40914b4297c01088664f7dfe885d8cf5d1badd946
MD5 3cb1cfaa567ce562ad2d5640531ca6ff
BLAKE2b-256 92d491caee66ebad8774bb8c8e749bbc9a2dcdba3d0db7faec251a290cee1823

See more details on using hashes here.

File details

Details for the file micropype-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: micropype-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.6

File hashes

Hashes for micropype-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2bbdc9ef14771fec7ffedcebf24a31d99c88420220458b7792c05f348fe81c1e
MD5 100a158102c34880d8dff5c3fb92b677
BLAKE2b-256 6038c83927b7f14fa30912fbf5ed444c02448706f6381e0d74c40344f1eff289

See more details on using hashes here.

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