{ "info": { "author": "The Luigi Authors", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: System :: Monitoring" ], "description": ".. note::\n\n For the latest source, discussion, etc, please visit the\n `GitHub repository `_\n\n\n.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/luigi.png\n :alt: Luigi Logo\n :align: center\n\n.. image:: https://img.shields.io/travis/spotify/luigi/master.svg?style=flat\n :target: https://travis-ci.org/spotify/luigi\n\n.. image:: https://img.shields.io/codecov/c/github/spotify/luigi/master.svg?style=flat\n :target: https://codecov.io/gh/spotify/luigi?branch=master\n\n.. image:: https://landscape.io/github/spotify/luigi/master/landscape.svg?style=flat\n :target: https://landscape.io/github/spotify/luigi/master\n\n.. image:: https://img.shields.io/pypi/v/luigi.svg?style=flat\n :target: https://pypi.python.org/pypi/luigi\n\n.. image:: https://img.shields.io/pypi/l/luigi.svg?style=flat\n :target: https://pypi.python.org/pypi/luigi\n\nLuigi is a Python (2.7, 3.6, 3.7 tested) package that helps you build complex\npipelines of batch jobs. It handles dependency resolution, workflow management,\nvisualization, handling failures, command line integration, and much more.\n\nGetting Started\n---------------\n\nRun ``pip install luigi`` to install the latest stable version from `PyPI\n`_. `Documentation for the latest release\n`__ is hosted on readthedocs.\n\nRun ``pip install luigi[toml]`` to install Luigi with `TOML-based configs\n`__ support.\n\nFor the bleeding edge code, ``pip install\ngit+https://github.com/spotify/luigi.git``. `Bleeding edge documentation\n`__ is also available.\n\nBackground\n----------\n\nThe purpose of Luigi is to address all the plumbing typically associated\nwith long-running batch processes. You want to chain many tasks,\nautomate them, and failures *will* happen. These tasks can be anything,\nbut are typically long running things like\n`Hadoop `_ jobs, dumping data to/from\ndatabases, running machine learning algorithms, or anything else.\n\nThere are other software packages that focus on lower level aspects of\ndata processing, like `Hive `__,\n`Pig `_, or\n`Cascading `_. Luigi is not a framework to\nreplace these. Instead it helps you stitch many tasks together, where\neach task can be a `Hive query `__,\na `Hadoop job in Java `_,\na `Spark job in Scala or Python `_,\na Python snippet,\n`dumping a table `_\nfrom a database, or anything else. It's easy to build up\nlong-running pipelines that comprise thousands of tasks and take days or\nweeks to complete. Luigi takes care of a lot of the workflow management\nso that you can focus on the tasks themselves and their dependencies.\n\nYou can build pretty much any task you want, but Luigi also comes with a\n*toolbox* of several common task templates that you use. It includes\nsupport for running\n`Python mapreduce jobs `_\nin Hadoop, as well as\n`Hive `__,\nand `Pig `__,\njobs. It also comes with\n`file system abstractions for HDFS `_,\nand local files that ensures all file system operations are atomic. This\nis important because it means your data pipeline will not crash in a\nstate containing partial data.\n\nVisualiser page\n---------------\n\nThe Luigi server comes with a web interface too, so you can search and filter\namong all your tasks.\n\n.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/visualiser_front_page.png\n :alt: Visualiser page\n\nDependency graph example\n------------------------\n\nJust to give you an idea of what Luigi does, this is a screen shot from\nsomething we are running in production. Using Luigi's visualiser, we get\na nice visual overview of the dependency graph of the workflow. Each\nnode represents a task which has to be run. Green tasks are already\ncompleted whereas yellow tasks are yet to be run. Most of these tasks\nare Hadoop jobs, but there are also some things that run locally and\nbuild up data files.\n\n.. figure:: https://raw.githubusercontent.com/spotify/luigi/master/doc/user_recs.png\n :alt: Dependency graph\n\nPhilosophy\n----------\n\nConceptually, Luigi is similar to `GNU\nMake `_ where you have certain tasks\nand these tasks in turn may have dependencies on other tasks. There are\nalso some similarities to `Oozie `_\nand `Azkaban `_. One major\ndifference is that Luigi is not just built specifically for Hadoop, and\nit's easy to extend it with other kinds of tasks.\n\nEverything in Luigi is in Python. Instead of XML configuration or\nsimilar external data files, the dependency graph is specified *within\nPython*. This makes it easy to build up complex dependency graphs of\ntasks, where the dependencies can involve date algebra or recursive\nreferences to other versions of the same task. However, the workflow can\ntrigger things not in Python, such as running\n`Pig scripts `_\nor `scp'ing files `_.\n\nWho uses Luigi?\n---------------\n\nWe use Luigi internally at `Spotify `_ to run\nthousands of tasks every day, organized in complex dependency graphs.\nMost of these tasks are Hadoop jobs. Luigi provides an infrastructure\nthat powers all kinds of stuff including recommendations, toplists, A/B\ntest analysis, external reports, internal dashboards, etc.\n\nSince Luigi is open source and without any registration walls, the exact number\nof Luigi users is unknown. But based on the number of unique contributors, we\nexpect hundreds of enterprises to use it. Some users have written blog posts\nor held presentations about Luigi:\n\n* `Spotify `_ `(presentation, 2014) `__\n* `Foursquare `_ `(presentation, 2013) `__\n* `Mortar Data (Datadog) `_ `(documentation / tutorial) `__\n* `Stripe `_ `(presentation, 2014) `__\n* `Asana `_ `(blog, 2014) `__\n* `Buffer `_ `(blog, 2014) `__\n* `SeatGeek `_ `(blog, 2015) `__\n* `Treasure Data `_ `(blog, 2015) `__\n* `Growth Intelligence `_ `(presentation, 2015) `__\n* `AdRoll `_ `(blog, 2015) `__\n* 17zuoye `(presentation, 2015) `__\n* `Custobar `_ `(presentation, 2016) `__\n* `Blendle `_ `(presentation) `__\n* `TrustYou `_ `(presentation, 2015) `__\n* `Groupon `_ / `OrderUp `_ `(alternative implementation) `__\n* `Red Hat - Marketing Operations `_ `(blog, 2017) `__\n* `GetNinjas `_ `(blog, 2017) `__\n* `voyages-sncf.com `_ `(presentation, 2017) `__\n* `Open Targets `_ `(blog, 2017) `__\n* `Leipzig University Library `_ `(presentation, 2016) `__ / `(project) `__\n* `Synetiq `_ `(presentation, 2017) `__\n* `Glossier `_ `(blog, 2018) `__\n* `Data Revenue `_ `(blog, 2018) `_\n* `Uppsala University `_ `(tutorial) `_ / `(presentation, 2015) `_ / `(slides, 2015) `_ / `(poster, 2015) `_ / `(paper, 2016) `_ / `(project) `_\n* `GIPHY `_ `(blog, 2019) `__\n* `xtream `__ `(blog, 2019) `__\n\nSome more companies are using Luigi but haven't had a chance yet to write about it:\n\n* `Schibsted `_\n* `enbrite.ly `_\n* `Dow Jones / The Wall Street Journal `_\n* `Hotels.com `_\n* `Newsela `_\n* `Squarespace `_\n* `OAO `_\n* `Grovo `_\n* `Weebly `_\n* `Deloitte `_\n* `Stacktome `_\n* `LINX+Neemu+Chaordic `_\n* `Foxberry `_\n* `Okko `_\n* `ISVWorld `_\n* `Big Data `_\n* `Movio `_\n* `Bonnier News `_\n* `Starsky Robotics `_\n* `BaseTIS `_\n* `Hopper `_\n* `VOYAGE GROUP/Zucks `_\n* `Textpert `_\n* `Whizar `_\n* `xtream `__\n* `Skyscanner `_\n* `Jodel `_\n\nWe're more than happy to have your company added here. Just send a PR on GitHub.\n\nExternal links\n--------------\n\n* `Mailing List `_ for discussions and asking questions. (Google Groups)\n* `Releases `_ (PyPI)\n* `Source code `_ (GitHub)\n* `Hubot Integration `_ plugin for Slack, Hipchat, etc (GitHub)\n\nAuthors\n-------\n\nLuigi was built at `Spotify `_, mainly by\n`Erik Bernhardsson `_ and\n`Elias Freider `_.\n`Many other people `_\nhave contributed since open sourcing in late 2012.\n`Arash Rouhani `_ is currently the chief\nmaintainer of Luigi.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/spotify/luigi", "keywords": "", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "luigi", "package_url": "https://pypi.org/project/luigi/", "platform": "", "project_url": "https://pypi.org/project/luigi/", "project_urls": { "Homepage": "https://github.com/spotify/luigi" }, "release_url": "https://pypi.org/project/luigi/2.8.9/", "requires_dist": null, "requires_python": "", "summary": "Workflow mgmgt + task scheduling + dependency resolution", "version": "2.8.9" }, "last_serial": 5735357, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "eef9f05d7b9930943c6f631253a90cf6", "sha256": "9aa059aed1db008ab1917f0d006ab356d8e677b1d846ee2a2b451c9f68391e44" }, "downloads": -1, "filename": "luigi-1.0.tar.gz", "has_sig": false, "md5_digest": "eef9f05d7b9930943c6f631253a90cf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64636, "upload_time": "2012-10-21T18:51:38", "url": "https://files.pythonhosted.org/packages/fd/e9/cf3edb46c2be2d5f6e1cb345af929e5240473c310a1a004d42aa1c69e718/luigi-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "884b7bd6b966ef4b00ec8a99d1cb5f98", "sha256": "cd974ae6f726a7f428180a3bd7d56bd85d29a9d9835b94e046a0761df59f3cd4" }, "downloads": -1, "filename": "luigi-1.0.1.tar.gz", "has_sig": false, "md5_digest": "884b7bd6b966ef4b00ec8a99d1cb5f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93270, "upload_time": "2013-04-23T00:07:42", "url": "https://files.pythonhosted.org/packages/ab/b3/47b0977818f72172e8385fa10775943e5e8546ff5b6a6867e9b048af1fbe/luigi-1.0.1.tar.gz" } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "7f6a390a7d928f3866f13bd5be55a91d", "sha256": "b1baa6968feb73704ebfce34b9f9dac25bd39f692ae0a7e993493dad7f4d3340" }, "downloads": -1, "filename": "luigi-1.0.10.tar.gz", "has_sig": false, "md5_digest": "7f6a390a7d928f3866f13bd5be55a91d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228201, "upload_time": "2013-08-09T16:06:37", "url": "https://files.pythonhosted.org/packages/07/c1/26b984d5f1084e57ff9207a9b1873ce0a0c3d4c1c857f20fa38e93c45b3b/luigi-1.0.10.tar.gz" } ], "1.0.11": [ { "comment_text": "", "digests": { "md5": "d5858aeeb5deef91ae819376ebefd83d", "sha256": "71de23f108d05791ec7059eac4323e9dfe3d30f887a682114b19a0788ef15aba" }, "downloads": -1, "filename": "luigi-1.0.11.tar.gz", "has_sig": false, "md5_digest": "d5858aeeb5deef91ae819376ebefd83d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 238741, "upload_time": "2013-11-21T23:07:21", "url": "https://files.pythonhosted.org/packages/bd/f4/8828fbced3792398065560a5d7203df45b85199f230bde9364d9ce37726e/luigi-1.0.11.tar.gz" } ], "1.0.12": [ { "comment_text": "", "digests": { "md5": "58d33b2f940bd4ad2baa5281d4240345", "sha256": "fad252dd9823e64b67b105712c28344cb68bdbb629055508ac5ef026c975af1f" }, "downloads": -1, "filename": "luigi-1.0.12.tar.gz", "has_sig": false, "md5_digest": "58d33b2f940bd4ad2baa5281d4240345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 238722, "upload_time": "2013-11-26T04:18:10", "url": "https://files.pythonhosted.org/packages/5a/09/38185b73e7ea6d477ea01cc85f075b77730595b1f8b0e55a4edbeac66d53/luigi-1.0.12.tar.gz" } ], "1.0.13": [ { "comment_text": "", "digests": { "md5": "3150d20f66026df00887625f11720acb", "sha256": "71c967e38d03817d75badb475c3d5f5d04759a2de5d95989ff7aea7a88da27d7" }, "downloads": -1, "filename": "luigi-1.0.13.tar.gz", "has_sig": false, "md5_digest": "3150d20f66026df00887625f11720acb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 293454, "upload_time": "2014-02-03T05:44:54", "url": "https://files.pythonhosted.org/packages/bb/d8/ec43a5bbbf963675a198dd0c050f61df859c326b9373d26ac22bee00aa95/luigi-1.0.13.tar.gz" } ], "1.0.14": [ { "comment_text": "", "digests": { "md5": "f9212f6cd1dc046739664b5bedcc3415", "sha256": "54a131fb0197191766829741846d12ddec6dafaa900029e9159e66812a09cb4e" }, "downloads": -1, "filename": "luigi-1.0.14.tar.gz", "has_sig": false, "md5_digest": "f9212f6cd1dc046739664b5bedcc3415", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277355, "upload_time": "2014-05-14T11:56:59", "url": "https://files.pythonhosted.org/packages/31/7a/697567f198c3187d329bd5239380595c18b1d4cec2100abb8683a5431449/luigi-1.0.14.tar.gz" } ], "1.0.15": [ { "comment_text": "", "digests": { "md5": "7222e00a048b66d6e92af253fc86810b", "sha256": "71e6c919b9f3dd9cc2e5759957b1a99203aa0f5fd36cdf1a54c5141b9488e195" }, "downloads": -1, "filename": "luigi-1.0.15.tar.gz", "has_sig": false, "md5_digest": "7222e00a048b66d6e92af253fc86810b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277722, "upload_time": "2014-05-14T14:18:30", "url": "https://files.pythonhosted.org/packages/e9/a4/229f2ba9f070bb167249989c872b1e6bd84afcaba5aa14d16f913e2a3388/luigi-1.0.15.tar.gz" } ], "1.0.16": [ { "comment_text": "", "digests": { "md5": "edbebf80d6c332fcd07907c14da4d326", "sha256": "004645584136f022f6deb89cc56eb60e792e6268560f300d597c3f5b928fbde8" }, "downloads": -1, "filename": "luigi-1.0.16.tar.gz", "has_sig": false, "md5_digest": "edbebf80d6c332fcd07907c14da4d326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277787, "upload_time": "2014-05-17T16:34:18", "url": "https://files.pythonhosted.org/packages/be/43/d9c21e162f3412833ab57d8fb22e328dbfec9e68e562e09e612f8bb8afd0/luigi-1.0.16.tar.gz" } ], "1.0.17": [ { "comment_text": "", "digests": { "md5": "13151df79c743df21358560f0e7e9321", "sha256": "3fca906b47d3bbb0950a247505eafefd512870663f2535c6e2a54395f0569d86" }, "downloads": -1, "filename": "luigi-1.0.17.tar.gz", "has_sig": false, "md5_digest": "13151df79c743df21358560f0e7e9321", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 296199, "upload_time": "2014-08-26T14:32:35", "url": "https://files.pythonhosted.org/packages/ba/f5/b3d877f760ae4cd741ba90ca4b0fcf0527b1e7e72ec34d13a8762afbdbc0/luigi-1.0.17.tar.gz" } ], "1.0.18": [ { "comment_text": "", "digests": { "md5": "e7cda3de5128d697ecb89b126522aa21", "sha256": "9d21d0011f86ee274f3491d88dda1d2b0c611067ac8272790d870b17665e0e74" }, "downloads": -1, "filename": "luigi-1.0.18.tar.gz", "has_sig": false, "md5_digest": "e7cda3de5128d697ecb89b126522aa21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 297983, "upload_time": "2014-09-15T11:40:39", "url": "https://files.pythonhosted.org/packages/0b/9a/f51f96ca7ee9a330d6912d08c5fe237008de1c10c52114722f68d15bdee8/luigi-1.0.18.tar.gz" } ], "1.0.19": [ { "comment_text": "", "digests": { "md5": "3170554e32a7a630f9457d3298741538", "sha256": "58611512a9833ddcfd91df7c57ccad0de4180c0c982d56d978da7454e7cb5222" }, "downloads": -1, "filename": "luigi-1.0.19.tar.gz", "has_sig": false, "md5_digest": "3170554e32a7a630f9457d3298741538", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300167, "upload_time": "2014-09-22T12:14:38", "url": "https://files.pythonhosted.org/packages/f5/a2/ee698ff0e301b321ffccf0a254df5e30e5ab734d23886606937f73b5ccb6/luigi-1.0.19.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "9ef8a6a5783f0bd5dbdbe4b8a889bb84", "sha256": "bf579e977fbfb215c5fcc5b4e99106e5cd4ecbcb20ace2c254bb446712f21bf9" }, "downloads": -1, "filename": "luigi-1.0.2.tar.gz", "has_sig": false, "md5_digest": "9ef8a6a5783f0bd5dbdbe4b8a889bb84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78573, "upload_time": "2013-04-25T17:18:57", "url": "https://files.pythonhosted.org/packages/9a/d5/6351a5b71f2bb6501211f6fc3d5e102d72017ef289b6729610208765617f/luigi-1.0.2.tar.gz" } ], "1.0.20": [ { "comment_text": "", "digests": { "md5": "f1edc408bb19ffaf18a88693abc0d765", "sha256": "2f5d9c699e89e3738c6722bbb91013e03acc5938f4aa0a23a5d06d9f246d347f" }, "downloads": -1, "filename": "luigi-1.0.20.tar.gz", "has_sig": false, "md5_digest": "f1edc408bb19ffaf18a88693abc0d765", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 324700, "upload_time": "2015-01-21T16:27:35", "url": "https://files.pythonhosted.org/packages/2b/88/804830f0c78ebe1a2b1dfbf723bfcd97f6822f4e139da5909cd87baf2374/luigi-1.0.20.tar.gz" } ], "1.0.21": [], "1.0.22": [ { "comment_text": "", "digests": { "md5": "10762c7d1999babdb38471a26b1d2880", "sha256": "b0e979f0a888e753c6e4720e694711efacee2947428e42db629da91a23708ee5" }, "downloads": -1, "filename": "luigi-1.0.22.tar.gz", "has_sig": false, "md5_digest": "10762c7d1999babdb38471a26b1d2880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 333175, "upload_time": "2015-02-10T04:20:16", "url": "https://files.pythonhosted.org/packages/b7/8b/d7751ae52e30e1b872bcaaf4626b202e0fc61c2c91fef91912b6e901545e/luigi-1.0.22.tar.gz" } ], "1.0.23": [ { "comment_text": "", "digests": { "md5": "0c9d7dd091b913f9076b5517dc41cd91", "sha256": "47ae4eb29938ba1a5fe413291b45823ae4638995c7b415f2801ffbeb6a0bc514" }, "downloads": -1, "filename": "luigi-1.0.23.tar.gz", "has_sig": false, "md5_digest": "0c9d7dd091b913f9076b5517dc41cd91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 333182, "upload_time": "2015-02-10T11:53:49", "url": "https://files.pythonhosted.org/packages/2e/5c/d53458d78415079fef6bc2231f7b5f5e5876e90f39cc2c57a054379df0cc/luigi-1.0.23.tar.gz" } ], "1.0.24": [ { "comment_text": "", "digests": { "md5": "44c6f413dff37e6cd295e696f2cdea19", "sha256": "881d0c70d350e4a16a26ed70e7fddcef2e7230c3ca3e30c9c7ab1a70372a4b6c" }, "downloads": -1, "filename": "luigi-1.0.24.tar.gz", "has_sig": false, "md5_digest": "44c6f413dff37e6cd295e696f2cdea19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 333339, "upload_time": "2015-02-11T12:01:07", "url": "https://files.pythonhosted.org/packages/3c/a5/3bc272eb6317147ddaf8c0c3bf7ba47a684216f5e16c4fdf80f05ac94d60/luigi-1.0.24.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "8fb2043ccf28c6034c3b2e1c8b0a92ff", "sha256": "a8024e3d6dce3d50b41b431a0bd66dc890fe5f04d7952298138995142163aa67" }, "downloads": -1, "filename": "luigi-1.0.3.tar.gz", "has_sig": false, "md5_digest": "8fb2043ccf28c6034c3b2e1c8b0a92ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93196, "upload_time": "2013-04-25T17:20:20", "url": "https://files.pythonhosted.org/packages/d6/8a/d9bd49a8ce0cb8e5e26f35436e5dafab01bb4fb13d7189a59f95b52a8a7b/luigi-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "d5eef08fb8f76875bc28680ec72511f8", "sha256": "1f8b5130cd2b7dc6bc6cf47db4b24eb82b41cde53e370d4e4eed80900f9cdc16" }, "downloads": -1, "filename": "luigi-1.0.4.tar.gz", "has_sig": false, "md5_digest": "d5eef08fb8f76875bc28680ec72511f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71168, "upload_time": "2013-08-07T18:46:38", "url": "https://files.pythonhosted.org/packages/56/09/d3776490559b62d53b7cf87cb066b76b9a7f91d6749325d146c76a2adc42/luigi-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "15ab75ef16b5c9164f8cf7dfbbd78ef8", "sha256": "4b8189c9c2a239d6c3683b1901b658ff751c87aa7114889499ebbbf4d141e7e8" }, "downloads": -1, "filename": "luigi-1.0.5.tar.gz", "has_sig": false, "md5_digest": "15ab75ef16b5c9164f8cf7dfbbd78ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225340, "upload_time": "2013-08-07T23:44:22", "url": "https://files.pythonhosted.org/packages/8c/16/4ac01f87ecb5f1cd1b083003cdaa485f1d4445817dd67fa4145d35243936/luigi-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "173f1868d0f8c318b2f9e91036d9bff2", "sha256": "41728a3c49b813d96f39d5d21ad4f014c70b29c19214ea6c0e8cd8264d2d5e06" }, "downloads": -1, "filename": "luigi-1.0.6.tar.gz", "has_sig": false, "md5_digest": "173f1868d0f8c318b2f9e91036d9bff2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225527, "upload_time": "2013-08-07T23:47:21", "url": "https://files.pythonhosted.org/packages/e9/3d/68c6ca27f4bda9aabfef3c58c2866cf5db6e05524162d36b3adb4e8fa8e5/luigi-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "38b4c984f1d3e702115a697d1637878c", "sha256": "9797cd4b29592a336f676ff2e0d68530ab2aa1eac96fef926ba049416046ef39" }, "downloads": -1, "filename": "luigi-1.0.7.tar.gz", "has_sig": false, "md5_digest": "38b4c984f1d3e702115a697d1637878c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226592, "upload_time": "2013-08-08T00:03:23", "url": "https://files.pythonhosted.org/packages/2b/e1/551931e19ff0aa49489be78f471bfaaed6c5ae2da4b368c3fb4ccc3293ff/luigi-1.0.7.tar.gz" } ], "1.0.8": [], "1.0.9": [ { "comment_text": "built for Darwin-11.4.2", "digests": { "md5": "c64aeabe850d1f6235ba353cc89f9174", "sha256": "8a1f0aa019e20196b6021e85fcf6f70031db29059417beb8aef7903e1691dd04" }, "downloads": -1, "filename": "luigi-1.0.9.macosx-10.7-intel.tar.gz", "has_sig": false, "md5_digest": "c64aeabe850d1f6235ba353cc89f9174", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 284105, "upload_time": "2013-08-09T16:05:56", "url": "https://files.pythonhosted.org/packages/b4/76/0a96b93f10d6b1cbfec203c8b07fcfe67f209ac1c43f22572ff9e42fc8ca/luigi-1.0.9.macosx-10.7-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "024834d21a13276e84346fc000ff8cb4", "sha256": "3948bd28f64bc1313d01f8fd75a7e7c457158478da46bd10830c82530dae6023" }, "downloads": -1, "filename": "luigi-1.0.9.tar.gz", "has_sig": false, "md5_digest": "024834d21a13276e84346fc000ff8cb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228183, "upload_time": "2013-08-09T16:05:58", "url": "https://files.pythonhosted.org/packages/01/75/6fa1e73a8fda67c02da29189541be78577c8535ea7b721e4c5c3b62a7fcc/luigi-1.0.9.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "742e9d7acbdceb007c5280b9e9f0f00d", "sha256": "634ae7cf6423d121d34b0a53c9c395c540d5533aff324fefb7e2b34f2a575d70" }, "downloads": -1, "filename": "luigi-1.1.0.tar.gz", "has_sig": false, "md5_digest": "742e9d7acbdceb007c5280b9e9f0f00d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 349728, "upload_time": "2015-03-07T17:29:44", "url": "https://files.pythonhosted.org/packages/85/b8/7a89ec0981570ae1fd30f102c8410381770db7898bbfdea3e1aa3ddd3b43/luigi-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5659011287f08ff6f1a36f9b9ab04269", "sha256": "a6715bc7ec23d32bce7865bc5235a00bb42a2172a3c4f6895b2d1fdc23629244" }, "downloads": -1, "filename": "luigi-1.1.1.tar.gz", "has_sig": false, "md5_digest": "5659011287f08ff6f1a36f9b9ab04269", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357235, "upload_time": "2015-03-16T13:02:09", "url": "https://files.pythonhosted.org/packages/59/d2/5f32dc62bfa1b430cb902bcd26c652f9fe4c9462a3b06bc1ca6e80127d85/luigi-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "a617f82f1354c49cb227b7877d3defa2", "sha256": "1fad3639e41e002dfa284637f3c73817931f66e8130a78d004275595b74325f2" }, "downloads": -1, "filename": "luigi-1.1.2.tar.gz", "has_sig": false, "md5_digest": "a617f82f1354c49cb227b7877d3defa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 357305, "upload_time": "2015-03-18T00:50:52", "url": "https://files.pythonhosted.org/packages/3d/26/191da8144fd2a881f72c6d87df68ee654e684989dcaa3559dcbc9c0a6355/luigi-1.1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "a147bba0bb1999b5856f4910bf15a9c0", "sha256": "a43d81514a0fcaa057f23c223066f2e2256cc361d6d0cc56c86f02aac84692c9" }, "downloads": -1, "filename": "luigi-1.2.1.tar.gz", "has_sig": false, "md5_digest": "a147bba0bb1999b5856f4910bf15a9c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 449107, "upload_time": "2015-05-26T10:00:32", "url": "https://files.pythonhosted.org/packages/3f/c7/7f5e1f5016a23c6cf2b3152bd27d994ad3b384e59e3c1bfdec444669853d/luigi-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "948a6574e4d4e1d1d8b8a355ca0cdaf7", "sha256": "69f0e75c305da8c8de4a538011b80136ee4f5e3d449f4de9b17d94b3cc9b7f7e" }, "downloads": -1, "filename": "luigi-1.3.0.tar.gz", "has_sig": false, "md5_digest": "948a6574e4d4e1d1d8b8a355ca0cdaf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457934, "upload_time": "2015-06-26T13:19:38", "url": "https://files.pythonhosted.org/packages/7a/3d/da7ebf732a295098ec7b72aefd6580cc68dad461fdbce9265ddb8a3544f8/luigi-1.3.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "06258afcfcdd2f829167450fd5fed604", "sha256": "0ec3d719f0287290af8d90a9de0d7772c54732d8e917dabcaacb44ac6c141866" }, "downloads": -1, "filename": "luigi-2.0.0.tar.gz", "has_sig": false, "md5_digest": "06258afcfcdd2f829167450fd5fed604", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1089886, "upload_time": "2015-10-23T12:32:11", "url": "https://files.pythonhosted.org/packages/f6/b6/92a5de1c1d04e579183b97cc2aa1e9fabface3d096ebba5a28842b9db1bf/luigi-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "625b7609fd6566fb14c25c8f2592d95f", "sha256": "678eb30789f43e32e4f001592fd0f607c6e012d56a00fd7e82f6c9e500db4b4c" }, "downloads": -1, "filename": "luigi-2.0.1.tar.gz", "has_sig": false, "md5_digest": "625b7609fd6566fb14c25c8f2592d95f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1089311, "upload_time": "2015-12-05T18:01:06", "url": "https://files.pythonhosted.org/packages/d4/2a/d6bff91d5ebb22449acb84b8212fd05d19e70713c16b092bfea4c2d2ce21/luigi-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "1f2b1e7de7a17d025163cff8d05f7a7a", "sha256": "98e3806afae88b8c2cc90ecd621f610c5a67f96aa7d6b5fee1d38f0cc6e499ac" }, "downloads": -1, "filename": "luigi-2.1.0.tar.gz", "has_sig": false, "md5_digest": "1f2b1e7de7a17d025163cff8d05f7a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1122512, "upload_time": "2016-04-01T22:30:41", "url": "https://files.pythonhosted.org/packages/3b/e8/1935ca0d61e89c135b06e27ebeb39e819d73cd162f8b8fabb3cb62fe4852/luigi-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "f05aab98f4212d807b5ab348239058ec", "sha256": "c4ae2282a6eb36ecff56eb4425464485cc88fdcb57fbb9d8b08f02e96bc36bc5" }, "downloads": -1, "filename": "luigi-2.1.1.tar.gz", "has_sig": false, "md5_digest": "f05aab98f4212d807b5ab348239058ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1129059, "upload_time": "2016-04-06T07:17:35", "url": "https://files.pythonhosted.org/packages/47/ef/50c8d8b71b6613bb17088cf7b02319dd907d8bd05f6280e27a4199c68402/luigi-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "9e304df7d11dc54b5cc702ccd59f0012", "sha256": "18cc4f424b4379158ccb765282aaa0e31b7bf46d0db855ede22c227cc315336c" }, "downloads": -1, "filename": "luigi-2.2.0.tar.gz", "has_sig": false, "md5_digest": "9e304df7d11dc54b5cc702ccd59f0012", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1098276, "upload_time": "2016-07-08T10:53:59", "url": "https://files.pythonhosted.org/packages/ab/f2/487cc0a14227f92d18291ea85bed2acbe09e23b717f42626af13f8a91fbe/luigi-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "3b7e0b4c8d684a168c97a4fb2d9340ca", "sha256": "b5b96a511d9eedbb7998432d5494e6a215d9056304a788e499f17b2b1ac7154d" }, "downloads": -1, "filename": "luigi-2.3.0.tar.gz", "has_sig": false, "md5_digest": "3b7e0b4c8d684a168c97a4fb2d9340ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1113879, "upload_time": "2016-08-12T03:20:41", "url": "https://files.pythonhosted.org/packages/25/64/5383d94b5b44e9c1443c1a6b857210ace8205954359f8353a50c16deb664/luigi-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "e48786e9ac71d8fd58694529d3f5539d", "sha256": "6e18ce83621bea7d4c4ba14648e3bf00e1021c1073cf024d6c12403573f247b5" }, "downloads": -1, "filename": "luigi-2.3.1.tar.gz", "has_sig": false, "md5_digest": "e48786e9ac71d8fd58694529d3f5539d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1114644, "upload_time": "2016-08-25T02:41:26", "url": "https://files.pythonhosted.org/packages/55/8d/0842fbdb05a18d4a9e578f7c1661fbc719c625b1d1f0f9ceb08ea8bea518/luigi-2.3.1.tar.gz" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "cd622f6fbae981bc1b8f9b0132b189b8", "sha256": "3cacee675f24e1c2bb4a3eaa508d767cf174f989b82cb1bd274881144e227d59" }, "downloads": -1, "filename": "luigi-2.3.2.tar.gz", "has_sig": false, "md5_digest": "cd622f6fbae981bc1b8f9b0132b189b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1116310, "upload_time": "2016-09-20T09:46:25", "url": "https://files.pythonhosted.org/packages/d5/0b/531d2efe721a7195bd593ff2d92d41720b10dae0093f9abfd2c073560dcf/luigi-2.3.2.tar.gz" } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "dea3b1cb636f7ac141c6054717728830", "sha256": "13c83f5a67b32014f73c7288397965e15d7d760e953a74548276771f9216bbd3" }, "downloads": -1, "filename": "luigi-2.3.3.tar.gz", "has_sig": false, "md5_digest": "dea3b1cb636f7ac141c6054717728830", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1119561, "upload_time": "2016-10-21T04:04:56", "url": "https://files.pythonhosted.org/packages/80/83/f1f805266ba83964b90e31890d8f8f9ee4b82c40e9778fac350bdf830fba/luigi-2.3.3.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "76303fa7281ac0c6a95aa9ada13acc3e", "sha256": "5c63d960c5219346acf29b925f5de7585427555a863b5f9e27fa19611f2d8382" }, "downloads": -1, "filename": "luigi-2.4.0.tar.gz", "has_sig": false, "md5_digest": "76303fa7281ac0c6a95aa9ada13acc3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1128461, "upload_time": "2016-12-02T04:52:12", "url": "https://files.pythonhosted.org/packages/6a/84/42bea7839bc6eee8c219775f6afe3e296a554985a0aa216fb6090478a3e5/luigi-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "26c29cd4d18381b1f148a7a43cbee335", "sha256": "fb0dbef787d2572f98c4a8d25c993731c8805d67919c79496fde7cab1cefdf26" }, "downloads": -1, "filename": "luigi-2.5.0.tar.gz", "has_sig": false, "md5_digest": "26c29cd4d18381b1f148a7a43cbee335", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1130701, "upload_time": "2017-01-10T07:54:38", "url": "https://files.pythonhosted.org/packages/9a/f2/7f7bf85e1e380375cc8a291ed648c733b4f310fe43a00073fff12bb61692/luigi-2.5.0.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "8c36cf3d37525ccc57f6ecc24431bdef", "sha256": "b308aaabab87473cbf0253c715144431476d8deb76bf7708a9850225c81bf0ef" }, "downloads": -1, "filename": "luigi-2.6.0.tar.gz", "has_sig": false, "md5_digest": "8c36cf3d37525ccc57f6ecc24431bdef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1158747, "upload_time": "2017-02-10T06:57:18", "url": "https://files.pythonhosted.org/packages/9f/aa/5067601c565d61c8e1f172035eee4f1d50f25a193b9041f17ebc6fff5764/luigi-2.6.0.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "411257d503fb14127f3854825d9e3fe4", "sha256": "4b60d7d6556086680ffcfdb8b7ffec97a8a46bbc4ccd2d47523082a25ccc1b1b" }, "downloads": -1, "filename": "luigi-2.6.1.tar.gz", "has_sig": false, "md5_digest": "411257d503fb14127f3854825d9e3fe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145502, "upload_time": "2017-03-14T09:52:36", "url": "https://files.pythonhosted.org/packages/47/90/b149d40eabc66e1dd42c36fdc32fcf206bc85948ebaad15b2862ddb692b1/luigi-2.6.1.tar.gz" } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "3db3d2c6555c6ebcc621edbf09770681", "sha256": "8de76dd1631f133407cd104f3aa4a51a7bfef92d0f46482430bd044c3f90e7c0" }, "downloads": -1, "filename": "luigi-2.6.2.tar.gz", "has_sig": false, "md5_digest": "3db3d2c6555c6ebcc621edbf09770681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1149272, "upload_time": "2017-06-06T08:35:47", "url": "https://files.pythonhosted.org/packages/ba/02/875fc467eb435a26de29ca654273dee24425696416de1d701971d3e04a91/luigi-2.6.2.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "f84ed709afb1669f9fdd69f4a2392b7b", "sha256": "3c9f3127671324c22db10516dc2a873ca458dfe0c0fb2e295f875e0b343c028a" }, "downloads": -1, "filename": "luigi-2.7.0.tar.gz", "has_sig": false, "md5_digest": "f84ed709afb1669f9fdd69f4a2392b7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1155186, "upload_time": "2017-08-25T13:19:16", "url": "https://files.pythonhosted.org/packages/a0/55/1fca3e8e2c54db39cadf5149019948303e3dc5efa2fd27dc614f3959019c/luigi-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "8c2fbd0c195d77dfbe4d998495b1b170", "sha256": "860118164e12b5d9deedbf07454d9561950fafe79aac8fc99449ae855adb1e9a" }, "downloads": -1, "filename": "luigi-2.7.1.tar.gz", "has_sig": false, "md5_digest": "8c2fbd0c195d77dfbe4d998495b1b170", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1157597, "upload_time": "2017-10-05T11:46:29", "url": "https://files.pythonhosted.org/packages/53/b6/6297e2a6c1964d034c5f1197a98e87f17f623317f924fdb649d422fdcb7c/luigi-2.7.1.tar.gz" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "50e2f32f742ab43896ee90ceeed40e93", "sha256": "7af4fd0e367a00caf346993638502ca5bc80ff5f12b974bcfec5dd12f4c26c69" }, "downloads": -1, "filename": "luigi-2.7.2-py2-none-any.whl", "has_sig": false, "md5_digest": "50e2f32f742ab43896ee90ceeed40e93", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1041395, "upload_time": "2018-01-24T11:55:24", "url": "https://files.pythonhosted.org/packages/34/8e/d4e94c72ab3cc8e26156f7f537fa34421c8352bf964ea085d5e9737ee83a/luigi-2.7.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a28f224635c3c6289dc2eb0b08acec75", "sha256": "b71cd2b8100f4ae2cca94a61afc6063b998df0b87d9e77886fca76fe8365e00b" }, "downloads": -1, "filename": "luigi-2.7.2.tar.gz", "has_sig": false, "md5_digest": "a28f224635c3c6289dc2eb0b08acec75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1159830, "upload_time": "2018-01-24T11:55:28", "url": "https://files.pythonhosted.org/packages/0c/51/1a4bf03ed2e8582da8c5aca172d145958975907247c2864e7c84ad36256e/luigi-2.7.2.tar.gz" } ], "2.7.3": [ { "comment_text": "", "digests": { "md5": "2abe209139e25dbc1908a800896cda8a", "sha256": "3b90f488dd2c67991940d598aa0552a1e557b5fbd3d6b0106458fe9728be6c04" }, "downloads": -1, "filename": "luigi-2.7.3.tar.gz", "has_sig": false, "md5_digest": "2abe209139e25dbc1908a800896cda8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1171942, "upload_time": "2018-03-13T15:45:00", "url": "https://files.pythonhosted.org/packages/e5/99/f6150a94a1677325bfa972bc20e0e959f6c6b94f189d18685e68167e53bc/luigi-2.7.3.tar.gz" } ], "2.7.4": [ { "comment_text": "", "digests": { "md5": "c882eb9fe4151f5ee8d5c58fa51e2ca5", "sha256": "1c36a58f39849e52ed4925bb4664c7752f731afa51d93d87f069dc60ca4cebba" }, "downloads": -1, "filename": "luigi-2.7.4.tar.gz", "has_sig": false, "md5_digest": "c882eb9fe4151f5ee8d5c58fa51e2ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1173926, "upload_time": "2018-04-11T11:33:44", "url": "https://files.pythonhosted.org/packages/51/d0/e3f3fc641f6b0f2d7026e94d75880be695b3acb8210aca7cd4f24491b049/luigi-2.7.4.tar.gz" } ], "2.7.5": [ { "comment_text": "", "digests": { "md5": "d974aa64995615f8d8aefa3d11813732", "sha256": "0cf2e191f7fb2c16f4351ae4235164095e7d9666cdb58d0c17950bbec06dc750" }, "downloads": -1, "filename": "luigi-2.7.5.tar.gz", "has_sig": false, "md5_digest": "d974aa64995615f8d8aefa3d11813732", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1174036, "upload_time": "2018-04-12T10:17:58", "url": "https://files.pythonhosted.org/packages/27/d4/6e7ce0e4a4fcc6df81513c11dfdcedcf8fe506077ba3381f929670925dbc/luigi-2.7.5.tar.gz" } ], "2.7.6": [ { "comment_text": "", "digests": { "md5": "9bec2e53f360901a01eb7b5576e0b64c", "sha256": "1f8ac3fdbc09f030c24502b1773a313e3f032f907b79f7d96146a9936075a16f" }, "downloads": -1, "filename": "luigi-2.7.6.tar.gz", "has_sig": false, "md5_digest": "9bec2e53f360901a01eb7b5576e0b64c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1172846, "upload_time": "2018-07-11T13:52:44", "url": "https://files.pythonhosted.org/packages/fb/9d/19f7449b2c75e4f4a1e2dfede920dd8e91c5820cecca89bfcdfe28c47b0f/luigi-2.7.6.tar.gz" } ], "2.7.7": [ { "comment_text": "", "digests": { "md5": "24e65a0a0927ce9ab24b63cec6986200", "sha256": "63b17f46ab2288d181f6649e0ea1937e1454722d1d15e112ffb9878494da534d" }, "downloads": -1, "filename": "luigi-2.7.7.tar.gz", "has_sig": false, "md5_digest": "24e65a0a0927ce9ab24b63cec6986200", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1189402, "upload_time": "2018-08-24T09:03:30", "url": "https://files.pythonhosted.org/packages/b5/d6/7dbde9f72d05a83e3903db45c05d57d80bd198951b389c64c4afe3f67129/luigi-2.7.7.tar.gz" } ], "2.7.8": [ { "comment_text": "", "digests": { "md5": "493174f1152591f333ed7434182aa608", "sha256": "4664648cec5b2473cf49997d4f86cf2481c568924281f6ac44553f123563e269" }, "downloads": -1, "filename": "luigi-2.7.8.tar.gz", "has_sig": false, "md5_digest": "493174f1152591f333ed7434182aa608", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1189408, "upload_time": "2018-08-24T13:43:00", "url": "https://files.pythonhosted.org/packages/f7/ee/430f5bc90c4be437b4af24d65c77a037ab4f69c1ce90e047535403a4a2c1/luigi-2.7.8.tar.gz" } ], "2.7.9": [ { "comment_text": "", "digests": { "md5": "d019aa2f5c425c5eea12a055aaa7f135", "sha256": "3dedb6f6b4f4687c00f7cb3e9d31d030414a64fa3fcb0eaca2df0c8af143bc0c" }, "downloads": -1, "filename": "luigi-2.7.9.tar.gz", "has_sig": false, "md5_digest": "d019aa2f5c425c5eea12a055aaa7f135", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1190530, "upload_time": "2018-09-28T07:30:22", "url": "https://files.pythonhosted.org/packages/96/bd/9fe144e46c2cdee5f0c712b2287cc506ade7fdf1f2a3fdc9ce0f0655b3eb/luigi-2.7.9.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "f6bf793c69aecb70fc7eff05292d9007", "sha256": "29217429782eed4885e312103f25cedb1a63fdae4773c68e368a55eacca2c9a0" }, "downloads": -1, "filename": "luigi-2.8.0.tar.gz", "has_sig": false, "md5_digest": "f6bf793c69aecb70fc7eff05292d9007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1188824, "upload_time": "2018-11-02T12:48:20", "url": "https://files.pythonhosted.org/packages/fa/d6/18ba4b07360694fbebe03ed137a01a2a1f9431d77196812ace9b961e5061/luigi-2.8.0.tar.gz" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "3bb9d851b4ce94ca077d1f4bee659421", "sha256": "34245f5e8303247fd3a0844d2fea3f89312f9b77ea6c6af639aaee1e672c65ac" }, "downloads": -1, "filename": "luigi-2.8.1.tar.gz", "has_sig": false, "md5_digest": "3bb9d851b4ce94ca077d1f4bee659421", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1191537, "upload_time": "2018-12-11T16:07:53", "url": "https://files.pythonhosted.org/packages/ad/12/d0a89232af30749b1871004c7bfaa8e2b94760a1231f986b18fe7dcc3267/luigi-2.8.1.tar.gz" } ], "2.8.2": [ { "comment_text": "", "digests": { "md5": "eed8600c32047fbf227e0c9b68d2822f", "sha256": "4d1330dfc219903f12598c1cb8d5b6676d4d9768d13c2838c4a5219c17c7fd8e" }, "downloads": -1, "filename": "luigi-2.8.2.tar.gz", "has_sig": false, "md5_digest": "eed8600c32047fbf227e0c9b68d2822f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1191880, "upload_time": "2018-12-12T17:05:21", "url": "https://files.pythonhosted.org/packages/39/c8/0b4a766c7e6b753d09c7324d06ff01eed62fb7ce4f693196442d258db291/luigi-2.8.2.tar.gz" } ], "2.8.3": [ { "comment_text": "", "digests": { "md5": "31cdf5e9fee7bf591161f9603dcbb3c7", "sha256": "8b5c84a3c3f4df07309056d3b98348b93c054f1931b7ee22fc29e7989f645c9e" }, "downloads": -1, "filename": "luigi-2.8.3.tar.gz", "has_sig": false, "md5_digest": "31cdf5e9fee7bf591161f9603dcbb3c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1199103, "upload_time": "2019-01-16T13:52:45", "url": "https://files.pythonhosted.org/packages/3c/ac/28a8e7754eb4540bc5c9a3f0c831ea61dd4eae0e99d25345bd9d562f770a/luigi-2.8.3.tar.gz" } ], "2.8.4": [ { "comment_text": "", "digests": { "md5": "8c1ea0be79bd4b29cb2c390a13cf3c1f", "sha256": "f6d701c6127c3bbdcd76afccad0f5e7e8c0f15f0fddf64f74516f564e5514960" }, "downloads": -1, "filename": "luigi-2.8.4.tar.gz", "has_sig": false, "md5_digest": "8c1ea0be79bd4b29cb2c390a13cf3c1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1209390, "upload_time": "2019-05-06T14:48:34", "url": "https://files.pythonhosted.org/packages/c2/26/c35484573a09da5a10d9f3106ff4607c75dd3307f626bf4b0ab9761c0325/luigi-2.8.4.tar.gz" } ], "2.8.5": [ { "comment_text": "", "digests": { "md5": "612c7a5bdbff94f2f3a6d09864f6c0c1", "sha256": "e52321aa16e10f641fddae909b13d55672a2fa55a2c8a1bae7f83b8ef236a823" }, "downloads": -1, "filename": "luigi-2.8.5.tar.gz", "has_sig": false, "md5_digest": "612c7a5bdbff94f2f3a6d09864f6c0c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1209779, "upload_time": "2019-05-09T11:34:33", "url": "https://files.pythonhosted.org/packages/1f/7d/76f74013216b540d588fba6e3a0f1a6ca6f2931e206d0a0dcf9508f8c6aa/luigi-2.8.5.tar.gz" } ], "2.8.6": [ { "comment_text": "", "digests": { "md5": "5aabe50a547908387d110aca9800e21e", "sha256": "74220bee38ab953c0f4ef8a7c89823e6e40397cc5a589f850c120545d9ee58f8" }, "downloads": -1, "filename": "luigi-2.8.6.tar.gz", "has_sig": false, "md5_digest": "5aabe50a547908387d110aca9800e21e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1209828, "upload_time": "2019-05-22T12:38:17", "url": "https://files.pythonhosted.org/packages/f2/37/339231efd3e8b53463183cf3f087d64f1f383794edf26a3fc635e6345727/luigi-2.8.6.tar.gz" } ], "2.8.7": [ { "comment_text": "", "digests": { "md5": "a749a96db5454bea826a1fb349741ea5", "sha256": "5f1c470c05dd9d3fbb6914247aaf58d7be60a04a2a517a7523df2fb57204a42c" }, "downloads": -1, "filename": "luigi-2.8.7.tar.gz", "has_sig": false, "md5_digest": "a749a96db5454bea826a1fb349741ea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1212417, "upload_time": "2019-06-14T12:39:25", "url": "https://files.pythonhosted.org/packages/a5/6e/cd6a984beeaea1de1e0168223e820f4faf52e65328aad2ffe0d330a1f9ef/luigi-2.8.7.tar.gz" } ], "2.8.8": [ { "comment_text": "", "digests": { "md5": "e99e8ee524ca8b2029fda79b0e997adb", "sha256": "91fd07f0e1f205422d85b12963c634c31f3f9dbf0235f4372e1cda92448f40df" }, "downloads": -1, "filename": "luigi-2.8.8.tar.gz", "has_sig": false, "md5_digest": "e99e8ee524ca8b2029fda79b0e997adb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1213022, "upload_time": "2019-08-12T08:46:23", "url": "https://files.pythonhosted.org/packages/d2/98/7bbcb4c42cb5f511a0d7901c2ebdf81e2abd1f0ce2f0854b9a3aa2f4be79/luigi-2.8.8.tar.gz" } ], "2.8.9": [ { "comment_text": "", "digests": { "md5": "bf2415ab7b1e7a7a0cf4555693516702", "sha256": "ac8d6f25a417498f09bbf79ab7ea4d9f16d431cf5015ed03fbf489307f3ea661" }, "downloads": -1, "filename": "luigi-2.8.9.tar.gz", "has_sig": false, "md5_digest": "bf2415ab7b1e7a7a0cf4555693516702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214947, "upload_time": "2019-08-27T08:21:25", "url": "https://files.pythonhosted.org/packages/65/77/e1a976a9f2a1f997d2a3fa788764ad032887bd4399a90f85ec90e1c869c8/luigi-2.8.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bf2415ab7b1e7a7a0cf4555693516702", "sha256": "ac8d6f25a417498f09bbf79ab7ea4d9f16d431cf5015ed03fbf489307f3ea661" }, "downloads": -1, "filename": "luigi-2.8.9.tar.gz", "has_sig": false, "md5_digest": "bf2415ab7b1e7a7a0cf4555693516702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214947, "upload_time": "2019-08-27T08:21:25", "url": "https://files.pythonhosted.org/packages/65/77/e1a976a9f2a1f997d2a3fa788764ad032887bd4399a90f85ec90e1c869c8/luigi-2.8.9.tar.gz" } ] }