Questions tagged [luigi]

Luigi is a Python package that helps you build complex pipelines of batch jobs.

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.

For further information, see the documentation at luigi.readthedocs.io.

Getting Luigi

Run pip install luigi to install the latest stable version from PyPI.

For bleeding edge code, git clone https://github.com/spotify/luigi and python setup.py install. Bleeding edge documentation can be found here.

If you want to run the central scheduler (highly recommended), you need to install Tornado which you can do from PyPI as well: pip install tornado.

316 questions
-3
votes
1 answer

luigi task based on ternary operator

I have a requirement where DAG looks like following -> Task C -> Task D | Task A -> Task B - | -> Task E -> Task F Task B have a python ternary operator which decides what…
Madhup Srivastava
  • 416
  • 1
  • 5
  • 17
1 2 3
21
22