luigi-tools


Nameluigi-tools JSON
Version 0.3.4 PyPI version JSON
download
home_pagehttps://luigi-tools.readthedocs.io
SummaryTools to work with luigi.
upload_time2023-04-21 13:15:18
maintainer
docs_urlNone
authorBlue Brain Project, EPFL
requires_python>=3.7
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build status](https://github.com/BlueBrain/luigi-tools/actions/workflows/run-tox.yml/badge.svg?branch=main)](https://github.com/BlueBrain/luigi-tools/actions)
[![License](https://img.shields.io/badge/License-Apache%202-blue)](https://github.com/BlueBrain/luigi-tools/blob/master/LICENSE.txt)
[![Documentation status](https://readthedocs.org/projects/luigi-tools/badge/?version=latest)](https://luigi-tools.readthedocs.io/)


# Luigi-tools

This package extends and adds new features to the [luigi package][luigi_url].
Here are a few examples of these features:

* add a new `BoolParameter` that automatically switch to explicit parsing when the default value is `True` (otherwise it is not possible to set it to `False` using the CLI).
* add several types of optional parameters.
* add a `OutputLocalTarget` class to help building an output tree.
* add a mixin that adds a `--rerun` parameter that forces a given task to run again even if its targets exist, and also rerun all the tasks that depend on this one.
* add a mixin to remove the output of failed tasks which is likely to be corrupted or incomplete.
This feature applies the default behaviour of a [snakemake][snakemake_url] rule (Task).
* add a new `@copy_params` mechanism to copy the parameters from a task to another (the `@inherits` gives the same object to all the inheriting tasks while `@copy_params` only copies the definition of the parameter so each inheriting task can be given a different value).
* add functions to get and display the dependency graph of a given task.
* add a mechanism to setup templates for the `luigi.cfg` files, so the user just has to update specific values instead of copying the entire `luigi.cfg`.

Please read the [complete API documentation][luigi_tools_api_url] for more details.

## Installation

This package should be installed using pip:

```bash
pip install luigi-tools
```

## Usage

The [Luigi][luigi_url] package describes itself as follow:

> Luigi is a Python package that helps you build complex pipelines of batch
> jobs. It handles dependency resolution, workflow management, visualization, handling failures,
> command line integration, and much more.

The [luigi-tools][luigi_tools_url] package is supposed to make luigi easier for developers.
The following presents a few examples of the main features of the package.

### Boolean parameter

The [luigi.BoolParameter](https://luigi.readthedocs.io/en/stable/api/luigi.parameter.html#luigi.parameter.BoolParameter)
can be parsed in two ways: implicit or explicit. The explicit way requires the user to enter a
value: `True` of `False`. On the contrary, the implicit way requires no value and will just set
the value to `True` if the parameter is given. This is not compatible with a default value set to
`True`, as it is not possible to set the value to `False` using the CLI in this case.

If you want to automatically set the parsing to explicit when the default value is `True`:

```python
from luigi.task import Task
from luigi_tools import BoolParameter

class MyTask(Task):

    a_boolean_parameter = BoolParameter(default=True)

    def run(self):
        pass
```

### Target with prefix

The [Luigi][luigi_url] workflows are based on `Target` object that represents the state of a step
of the workflow. These targets can be anything but are often files in a result directory tree. In
order to not having to specify the result directory to each target, one can use the
`OutputLocalTarget` class and give it a `prefix`. So all targets based on this class will be
located in the same directory.

```python
from luigi.task import Task
from luigi_tools.target import OutputLocalTarget

class MyTask(Task):

    def run(self):
        pass

    def output(self):
        # The target will point to the file result_directory/filename.ext
        return OutputLocalTarget("filename.ext")

# Set the default prefix (it could also be called inside another Task)
OutputLocalTarget.set_default_prefix("result_directory")

# Run the task (the task can also be called with the CLI as usual)
luigi.build([MyTask()], local_scheduler=True)
```

### Rerunable task

In [Luigi][luigi_url], the states of the tasks are deducted from their targets. If the targets exist, the task
is assumed to have already been completed and is thus skipped if the workflow is run again. This
behavior is usually good to avoid performing computations that are already completed. Nevertheless,
sometimes it is desirable to overwrite a former result, especially during the development process.
For this reason, a mixin that adds a `--rerun` parameter to a task is introduced. When this
parameter is set to `True`, all the targets of this task are deleted as well as the targets of the
tasks that depend on this one. So when all the tasks that are related to this task will run again.
As for any mixin, it must be go on the left of the `Task` class in the inheritance list.

```python
from luigi.task import Task
from luigi_tools.task import RerunMixin

class MyTask(RerunMixin, Task):

    def run(self):
        pass
```

Now the task `MyTask` has a boolean parameter `--rerun` which can be called in the CLI:

```bash
luigi -m my_module mytask --rerun
luigi -m my_module another_task_that_depends_on_mytask --MyTask-rerun
```

### Clear the output of failed tasks

When a task fails unexpectedly, it may leave an incomplete or corrupted output
that leads to wrong results in the downstream. With the RemoveCorruptedOutputMixin,
Luigi automatically removes the output targets of the tasks that failed. This is the default behaviour
in other workflow management systems such as [Snakemake][snakemake_url].

```python
from luigi_tools.task import RemoveCorruptedOutputMixin

    class TaskA(RemoveCorruptedOutputMixin, luigi.Task):
        """TaskA can remove its output upon failure."""
        pass

```

The `clean_failed` is `false` by default and it must explicitly be set to `true`.
This allows users to set it to false to debug the output without changing the code.

```bash
luigi -m my_module TaskA --clean_failed true
```

### Copy parameters

In some situations, several tasks have a few parameters in common. This can lead to painful
situations, and luigi provides some dedicated tools to deal with this,
[as described here](https://luigi.readthedocs.io/en/stable/api/luigi.util.html?highlight=inherits#using-inherits-and-requires-to-ease-parameter-pain).
Nevertheless, the tools provided by [Luigi][luigi_url] have a major drawback: all the tasks with
the inherited parameter will have the same value for this parameter. In some situations, one want
to be able to give different values to a task with an inherited parameter, especially during the
development process. This is possible with the `@copy_params` decorator:

```python
from luigi.task import Task
from luigi_tools.task import copy_params

class TaskA(Task):
        a = luigi.Parameter(default="default_value_a")

@luigi_tools.task.copy_params(
    a=luigi_tools.task.ParamRef(TaskA)
)
class TaskB(Task):
    b = luigi.Parameter(default="b")
```

Here the class `TaskB` has two parameters:
* `a` with `default_value_a` as default value.
* `b` with `b` as default value.

It also possible to change the name of the parameter or to change the default value:

```python
from luigi.task import Task
from luigi_tools.task import copy_params

class TaskA(Task):
        a = luigi.Parameter(default="default_value_a")

@luigi_tools.task.copy_params(
    a=luigi_tools.task.ParamRef(TaskA),
    aa=luigi_tools.task.ParamRef(TaskA, "a"),
    a_default=luigi_tools.task.ParamRef(TaskA, "a", "given_default_value"),
    a_none=luigi_tools.task.ParamRef(TaskA, "a", None),
)
class TaskB(Task):
    b = luigi.Parameter(default="b")
```

In this case the class `TaskB` has 5 parameters:
* `a` with `default_value_a` as default value.
* `aa` with `a` as default value.
* `a_default` with `given_default_value` as default value.
* `a_none` with `None` as default value.
* `b` with `b` as default value.

Note that the second parameter of `ParamRef` is the name of the inherited parameter in the parent
class. If it is not given, it is supposed that the parameter has the same name in both the
inheriting and the parent classes.

### Global parameters

In addition to the `@copy_params` decorator, it is possible to use the `GlobalParamMixin` mixin.
A task with this mixin has a new feature for the parameters inherited using `@copy_params`: if the
default value is not changed in `ParamRef` and if no specific value is given for the task, then the
task would take the same value as one of the inherited parameter. This combination of the
`@copy_params` decorator and `GlobalParamMixin` allows many ways of dealing with the parameters.

```python
from luigi.task import Task
from luigi_tools.task import copy_params
from luigi_tools.task import GlobalParamMixin

class TaskA(Task):
        a = luigi.Parameter(default="default_value_a")

@luigi_tools.task.copy_params(
    a=luigi_tools.task.ParamRef(TaskA)
)
class TaskB(GlobalParamMixin, Task):
    b = luigi.Parameter(default="b")
```

Now if `TaskB` is called with the following configuration:

```yaml
[TaskA]
a = "value for a"

[TaskB]
b = "value for b"
```

then the parameter `a` of `TaskB` has the value `value for a`.
If `TaskB` did not inherit from `GlobalParamMixin`, then it would have the value
`default_value_a`.

### Dependency graph

The `luigi-tools` package provides several functions to get the dependency graph of a task and to
render it using GraphViz. This can be very useful to show how the tasks of a workflow are
organized.


## Funding & Acknowledgment

The development of this software was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.

For license and authors, see `LICENSE.txt` and `AUTHORS.md` respectively.

Copyright © 2021-2022 Blue Brain Project/EPFL

[luigi_url]: https://luigi.readthedocs.io/en/stable/
[luigi_tools_url]: https://luigi-tools.readthedocs.io/en/stable/
[luigi_tools_api_url]: https://luigi-tools.readthedocs.io/en/stable/api.html
[snakemake_url]: https://snakemake.readthedocs.io/en/stable/

            

Raw data

            {
    "_id": null,
    "home_page": "https://luigi-tools.readthedocs.io",
    "name": "luigi-tools",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Blue Brain Project, EPFL",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/f1/ef/7f95172f2b8684339b2ff32d2a743bd380f382a107d175477fd12d06d41d/luigi-tools-0.3.4.tar.gz",
    "platform": null,
    "description": "[![Build status](https://github.com/BlueBrain/luigi-tools/actions/workflows/run-tox.yml/badge.svg?branch=main)](https://github.com/BlueBrain/luigi-tools/actions)\n[![License](https://img.shields.io/badge/License-Apache%202-blue)](https://github.com/BlueBrain/luigi-tools/blob/master/LICENSE.txt)\n[![Documentation status](https://readthedocs.org/projects/luigi-tools/badge/?version=latest)](https://luigi-tools.readthedocs.io/)\n\n\n# Luigi-tools\n\nThis package extends and adds new features to the [luigi package][luigi_url].\nHere are a few examples of these features:\n\n* add a new `BoolParameter` that automatically switch to explicit parsing when the default value is `True` (otherwise it is not possible to set it to `False` using the CLI).\n* add several types of optional parameters.\n* add a `OutputLocalTarget` class to help building an output tree.\n* add a mixin that adds a `--rerun` parameter that forces a given task to run again even if its targets exist, and also rerun all the tasks that depend on this one.\n* add a mixin to remove the output of failed tasks which is likely to be corrupted or incomplete.\nThis feature applies the default behaviour of a [snakemake][snakemake_url] rule (Task).\n* add a new `@copy_params` mechanism to copy the parameters from a task to another (the `@inherits` gives the same object to all the inheriting tasks while `@copy_params` only copies the definition of the parameter so each inheriting task can be given a different value).\n* add functions to get and display the dependency graph of a given task.\n* add a mechanism to setup templates for the `luigi.cfg` files, so the user just has to update specific values instead of copying the entire `luigi.cfg`.\n\nPlease read the [complete API documentation][luigi_tools_api_url] for more details.\n\n## Installation\n\nThis package should be installed using pip:\n\n```bash\npip install luigi-tools\n```\n\n## Usage\n\nThe [Luigi][luigi_url] package describes itself as follow:\n\n> Luigi is a Python package that helps you build complex pipelines of batch\n> jobs. It handles dependency resolution, workflow management, visualization, handling failures,\n> command line integration, and much more.\n\nThe [luigi-tools][luigi_tools_url] package is supposed to make luigi easier for developers.\nThe following presents a few examples of the main features of the package.\n\n### Boolean parameter\n\nThe [luigi.BoolParameter](https://luigi.readthedocs.io/en/stable/api/luigi.parameter.html#luigi.parameter.BoolParameter)\ncan be parsed in two ways: implicit or explicit. The explicit way requires the user to enter a\nvalue: `True` of `False`. On the contrary, the implicit way requires no value and will just set\nthe value to `True` if the parameter is given. This is not compatible with a default value set to\n`True`, as it is not possible to set the value to `False` using the CLI in this case.\n\nIf you want to automatically set the parsing to explicit when the default value is `True`:\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools import BoolParameter\n\nclass MyTask(Task):\n\n    a_boolean_parameter = BoolParameter(default=True)\n\n    def run(self):\n        pass\n```\n\n### Target with prefix\n\nThe [Luigi][luigi_url] workflows are based on `Target` object that represents the state of a step\nof the workflow. These targets can be anything but are often files in a result directory tree. In\norder to not having to specify the result directory to each target, one can use the\n`OutputLocalTarget` class and give it a `prefix`. So all targets based on this class will be\nlocated in the same directory.\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools.target import OutputLocalTarget\n\nclass MyTask(Task):\n\n    def run(self):\n        pass\n\n    def output(self):\n        # The target will point to the file result_directory/filename.ext\n        return OutputLocalTarget(\"filename.ext\")\n\n# Set the default prefix (it could also be called inside another Task)\nOutputLocalTarget.set_default_prefix(\"result_directory\")\n\n# Run the task (the task can also be called with the CLI as usual)\nluigi.build([MyTask()], local_scheduler=True)\n```\n\n### Rerunable task\n\nIn [Luigi][luigi_url], the states of the tasks are deducted from their targets. If the targets exist, the task\nis assumed to have already been completed and is thus skipped if the workflow is run again. This\nbehavior is usually good to avoid performing computations that are already completed. Nevertheless,\nsometimes it is desirable to overwrite a former result, especially during the development process.\nFor this reason, a mixin that adds a `--rerun` parameter to a task is introduced. When this\nparameter is set to `True`, all the targets of this task are deleted as well as the targets of the\ntasks that depend on this one. So when all the tasks that are related to this task will run again.\nAs for any mixin, it must be go on the left of the `Task` class in the inheritance list.\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools.task import RerunMixin\n\nclass MyTask(RerunMixin, Task):\n\n    def run(self):\n        pass\n```\n\nNow the task `MyTask` has a boolean parameter `--rerun` which can be called in the CLI:\n\n```bash\nluigi -m my_module mytask --rerun\nluigi -m my_module another_task_that_depends_on_mytask --MyTask-rerun\n```\n\n### Clear the output of failed tasks\n\nWhen a task fails unexpectedly, it may leave an incomplete or corrupted output\nthat leads to wrong results in the downstream. With the RemoveCorruptedOutputMixin,\nLuigi automatically removes the output targets of the tasks that failed. This is the default behaviour\nin other workflow management systems such as [Snakemake][snakemake_url].\n\n```python\nfrom luigi_tools.task import RemoveCorruptedOutputMixin\n\n    class TaskA(RemoveCorruptedOutputMixin, luigi.Task):\n        \"\"\"TaskA can remove its output upon failure.\"\"\"\n        pass\n\n```\n\nThe `clean_failed` is `false` by default and it must explicitly be set to `true`.\nThis allows users to set it to false to debug the output without changing the code.\n\n```bash\nluigi -m my_module TaskA --clean_failed true\n```\n\n### Copy parameters\n\nIn some situations, several tasks have a few parameters in common. This can lead to painful\nsituations, and luigi provides some dedicated tools to deal with this,\n[as described here](https://luigi.readthedocs.io/en/stable/api/luigi.util.html?highlight=inherits#using-inherits-and-requires-to-ease-parameter-pain).\nNevertheless, the tools provided by [Luigi][luigi_url] have a major drawback: all the tasks with\nthe inherited parameter will have the same value for this parameter. In some situations, one want\nto be able to give different values to a task with an inherited parameter, especially during the\ndevelopment process. This is possible with the `@copy_params` decorator:\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools.task import copy_params\n\nclass TaskA(Task):\n        a = luigi.Parameter(default=\"default_value_a\")\n\n@luigi_tools.task.copy_params(\n    a=luigi_tools.task.ParamRef(TaskA)\n)\nclass TaskB(Task):\n    b = luigi.Parameter(default=\"b\")\n```\n\nHere the class `TaskB` has two parameters:\n* `a` with `default_value_a` as default value.\n* `b` with `b` as default value.\n\nIt also possible to change the name of the parameter or to change the default value:\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools.task import copy_params\n\nclass TaskA(Task):\n        a = luigi.Parameter(default=\"default_value_a\")\n\n@luigi_tools.task.copy_params(\n    a=luigi_tools.task.ParamRef(TaskA),\n    aa=luigi_tools.task.ParamRef(TaskA, \"a\"),\n    a_default=luigi_tools.task.ParamRef(TaskA, \"a\", \"given_default_value\"),\n    a_none=luigi_tools.task.ParamRef(TaskA, \"a\", None),\n)\nclass TaskB(Task):\n    b = luigi.Parameter(default=\"b\")\n```\n\nIn this case the class `TaskB` has 5 parameters:\n* `a` with `default_value_a` as default value.\n* `aa` with `a` as default value.\n* `a_default` with `given_default_value` as default value.\n* `a_none` with `None` as default value.\n* `b` with `b` as default value.\n\nNote that the second parameter of `ParamRef` is the name of the inherited parameter in the parent\nclass. If it is not given, it is supposed that the parameter has the same name in both the\ninheriting and the parent classes.\n\n### Global parameters\n\nIn addition to the `@copy_params` decorator, it is possible to use the `GlobalParamMixin` mixin.\nA task with this mixin has a new feature for the parameters inherited using `@copy_params`: if the\ndefault value is not changed in `ParamRef` and if no specific value is given for the task, then the\ntask would take the same value as one of the inherited parameter. This combination of the\n`@copy_params` decorator and `GlobalParamMixin` allows many ways of dealing with the parameters.\n\n```python\nfrom luigi.task import Task\nfrom luigi_tools.task import copy_params\nfrom luigi_tools.task import GlobalParamMixin\n\nclass TaskA(Task):\n        a = luigi.Parameter(default=\"default_value_a\")\n\n@luigi_tools.task.copy_params(\n    a=luigi_tools.task.ParamRef(TaskA)\n)\nclass TaskB(GlobalParamMixin, Task):\n    b = luigi.Parameter(default=\"b\")\n```\n\nNow if `TaskB` is called with the following configuration:\n\n```yaml\n[TaskA]\na = \"value for a\"\n\n[TaskB]\nb = \"value for b\"\n```\n\nthen the parameter `a` of `TaskB` has the value `value for a`.\nIf `TaskB` did not inherit from `GlobalParamMixin`, then it would have the value\n`default_value_a`.\n\n### Dependency graph\n\nThe `luigi-tools` package provides several functions to get the dependency graph of a task and to\nrender it using GraphViz. This can be very useful to show how the tasks of a workflow are\norganized.\n\n\n## Funding & Acknowledgment\n\nThe development of this software was supported by funding to the Blue Brain Project, a research center of the \u00c9cole polytechnique f\u00e9d\u00e9rale de Lausanne (EPFL), from the Swiss government\u2019s ETH Board of the Swiss Federal Institutes of Technology.\n\nFor license and authors, see `LICENSE.txt` and `AUTHORS.md` respectively.\n\nCopyright \u00a9 2021-2022 Blue Brain Project/EPFL\n\n[luigi_url]: https://luigi.readthedocs.io/en/stable/\n[luigi_tools_url]: https://luigi-tools.readthedocs.io/en/stable/\n[luigi_tools_api_url]: https://luigi-tools.readthedocs.io/en/stable/api.html\n[snakemake_url]: https://snakemake.readthedocs.io/en/stable/\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Tools to work with luigi.",
    "version": "0.3.4",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c75d271fea6d0c3fa645de0825557d7908e83b0704152e15516131e7c561b268",
                "md5": "424caf14bf3fef0c7dd6366ba5e04ba4",
                "sha256": "0d80281dcefafd50157cfc2df9c3653651194433787361f6d56399c49f0e0cc7"
            },
            "downloads": -1,
            "filename": "luigi_tools-0.3.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "424caf14bf3fef0c7dd6366ba5e04ba4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 23273,
            "upload_time": "2023-04-21T13:15:17",
            "upload_time_iso_8601": "2023-04-21T13:15:17.341932Z",
            "url": "https://files.pythonhosted.org/packages/c7/5d/271fea6d0c3fa645de0825557d7908e83b0704152e15516131e7c561b268/luigi_tools-0.3.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1ef7f95172f2b8684339b2ff32d2a743bd380f382a107d175477fd12d06d41d",
                "md5": "0e1da039050707d26b8b18f8d9803061",
                "sha256": "a249be5cda54fdde5bc18dc32b21a1c6096e742ffc1d36bd2b5b58dff5f9c131"
            },
            "downloads": -1,
            "filename": "luigi-tools-0.3.4.tar.gz",
            "has_sig": false,
            "md5_digest": "0e1da039050707d26b8b18f8d9803061",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 60890,
            "upload_time": "2023-04-21T13:15:18",
            "upload_time_iso_8601": "2023-04-21T13:15:18.853128Z",
            "url": "https://files.pythonhosted.org/packages/f1/ef/7f95172f2b8684339b2ff32d2a743bd380f382a107d175477fd12d06d41d/luigi-tools-0.3.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-21 13:15:18",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "luigi-tools"
}
        
Elapsed time: 0.05609s