Skip to content

Instantly share code, notes, and snippets.

View neerajjose's full-sized avatar

neeraj neerajjose

  • Lemongrass
  • India
View GitHub Profile
@bonzanini
bonzanini / run_luigi.py
Created October 24, 2015 14:56
Example of Luigi task pipeline
# run with a custom --n
# python run_luigi.py SquaredNumbers --local-scheduler --n 20
import luigi
class PrintNumbers(luigi.Task):
n = luigi.IntParameter(default=10)
def requires(self):
return []