{ "info": { "author": "Michael Franklin, Richard Lupat", "author_email": "michael.franklin@petermac.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "# Janis (janis-pipelines) (Alpha)\n\n\n[![GitHub stars](https://img.shields.io/github/stars/PMCC-BioinformaticsCore/janis.svg?style=social)](https://github.com/PMCC-BioinformaticsCore/janis) [![Build Status](https://travis-ci.org/PMCC-BioinformaticsCore/janis.svg?branch=master)](https://travis-ci.org/PMCC-BioinformaticsCore/janis) [![Documentation Status](https://readthedocs.org/projects/janis/badge/?version=latest)](https://janis.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/janis-pipelines.svg)](https://badge.fury.io/py/janis-pipelines) [![codecov](https://codecov.io/gh/PMCC-BioinformaticsCore/janis/branch/master/graph/badge.svg)](https://codecov.io/gh/PMCC-BioinformaticsCore/janis) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) [![Gitter chat](https://badges.gitter.im/janis-pipelines.png)](https://gitter.im/janis-pipelines/community)\n\n_Janis is a framework creating specialised, simple workflow definitions that are then transpiled to \nCommon Workflow Language or Workflow Definition Language._ \n\nDocumentation is available here: https://janis.readthedocs.io/\n\n## Introduction \n\n>| WARNING: this project is work-in-progress and is provided as-is without warranty of any kind. There may be breaking changes committed to this repository without notice. |\n>|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n\n\nJanis gives you an API to build computational workflows and will generate\na workflow description in CWL (v1.2) and WDL (version development). By using Janis, \nyou get type-safety, portability and reproducibility across all of your execution environments.\n\n\nJanis requires a Python installation > 3.6, and can be installed through PIP \n([project page](https://pypi.org/project/janis-pipelines/)): \n\n```bash\n# Install janis and the toolkits\npip3 install janis-pipelines \n```\n\nThere are two ways to use Janis:\n\n- Build workflows (and translate to CWL / WDL)\n- Run tools or workflows with CWLTool or Cromwell\n\n### Latest versions\n\nCheck the table below for the latest released versions of Janis (`janis -v`):\n\n| Repository \t| Version \t|\n|------------\t|:----------:\t|\n| [Janis](https://github.com/PMCC-BioinformaticsCore/janis) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.svg)](https://badge.fury.io/py/janis-pipelines) |\n| [janis-assistant](https://github.com/PMCC-BioinformaticsCore/janis-assistant) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.runner.svg)](https://badge.fury.io/py/janis-pipelines.runner) |\n| [janis-bioinformatics](https://github.com/PMCC-BioinformaticsCore/janis-bioinformatics) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.bioinformatics.svg)](https://badge.fury.io/py/janis-pipelines.bioinformatics) |\n| [janis-core](https://github.com/PMCC-BioinformaticsCore/janis-core) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.core.svg)](https://badge.fury.io/py/janis-pipelines.core) |\n| [janis-pipelines](https://github.com/PMCC-BioinformaticsCore/janis-pipelines) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.pipelines.svg)](https://badge.fury.io/py/janis-pipelines.pipelines) |\n| [janis-templates](https://github.com/PMCC-BioinformaticsCore/janis-templates) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.templates.svg)](https://badge.fury.io/py/janis-pipelines.templates) |\n| [janis-unix](https://github.com/PMCC-BioinformaticsCore/janis-unix) | [![PyPI version](https://badge.fury.io/py/janis-pipelines.unix.svg)](https://badge.fury.io/py/janis-pipelines.unix) |\n\n\n### Example workflow\n\n\nLet's construct a simple example that takes a string input, calls the \n[echo](https://janis.readthedocs.io/en/latest/tools/unix/echo.html) tool and exposes the \nEcho tool's output as a workflow output. \n\n\n\n```bash\n# write the workflow to `helloworld.py`\ncat <> helloworld.py\nimport janis as j\nfrom janis_unix.tools import Echo\n\nw = j.WorkflowBuilder(\"hello_world\")\n\nw.input(\"input_to_print\", j.String)\nw.step(\"echo\", Echo(inp=w.input_to_print))\nw.output(\"echo_out\", source=w.echo.out)\nEOT\n\n\n# Translate workflow to WDL\njanis translate helloworld.py wdl\n\n# Run the workflow\njanis run -o helloworld-tutorial helloworld.py --input_to_print \"Hello, World!\"\n\n# See your output\ncat helloworld-tutorial/echo_out\n# Hello, World!\n```\n\n\n### How to use Janis\n\n- [Tutorial 0 - Introduction to Janis](https://janis.readthedocs.io/en/latest/tutorials/tutorial0.html)\n- [Tutorial 1 - Building a workflow](https://janis.readthedocs.io/en/latest/tutorials/tutorial1.html)\n- [Tutorial 2 - Wrapping a new tool](https://janis.readthedocs.io/en/latest/tutorials/tutorial2.html)\n\n\n#### Workshops\n\nIn addition, there are fully self-guided workshops that more broadly go through the functionality of Janis:\n\n- [Workshop 1](https://github.com/PMCC-BioinformaticsCore/janis-workshops/tree/master/workshop1)\n- [Workshop 2](https://github.com/PMCC-BioinformaticsCore/janis-workshops/tree/master/workshop2)\n\n### Examples\n\nSometimes it's easier to learn by examples, here are a few hand picked examples:\n\n- [Samtools View](https://github.com/PMCC-BioinformaticsCore/janis-bioinformatics/blob/master/janis_bioinformatics/tools/samtools/view/base.py) ([Docs](https://janis.readthedocs.io/en/latest/tools/bioinformatics/samtools/samtoolsview.html))\n\n- [WGS Germline pipeline (GATK Only)](https://github.com/PMCC-BioinformaticsCore/janis-pipelines/blob/master/janis_pipelines/wgs_germline_gatk/wgsgermlinegatk.py) ([Docs](https://janis.readthedocs.io/en/latest/pipelines/wgsgermlinegatk.html))\n\n\n### Toolbox\n\nThere are two toolboxes currently available on Janis:\n\n- [Unix](https://github.com/PMCC-BioinformaticsCore/janis-unix) ([list of tools](https://janis.readthedocs.io/en/latest/tools/bioinformatics/index.html))\n- [Bioinformatics](https://github.com/PMCC-BioinformaticsCore/janis-bioinformatics) ([list of tools](https://janis.readthedocs.io/en/latest/tools/unix/index.html))\n\n\n\n## About \n\n> _Further information_: [About](https://janis.readthedocs.io/en/latest/about.html) \n\nThis project was produced as part of the Portable Pipelines Project in partnership with: \n- [Melbourne Bioinformatics (University of Melbourne) ](https://www.melbournebioinformatics.org.au/) \n- [Peter MacCallum Cancer Centre](https://www.petermac.org/) \n- [Walter and Eliza Hall Institute of Medical Research (WEHI) ](https://www.wehi.edu.au/) \n\n### References:\n\nThrough conference or talks, this project has been referenced by the following titles:\n\n- Walter and Eliza Hall Institute Talk (WEHI) 2019: _Portable Pipelines Project: Developing reproducible bioinformatics pipelines with standardised workflow languages_\n- Bioinformatics Open Source Conference (BOSC) 2019: _Janis: an open source tool to machine generate type-safe CWL and WDL workflows_\n- Victorian Cancer Bioinformatics Symposium (VCBS) 2019: _Developing portable variant calling pipelines with Janis_\n- GIW / ABACBS 2019: _Janis: A Python framework for Portable Pipelines_\n- Australian BioCommons, December 2019: _Portable pipelines: build once and run everywhere with Janis_\n\n\n## Support \n\n### v0.9.0 Backwards Compatability\n\n**NOTE: Version 0.9.0 brings changes to output directories and camel case changes**\n\n- Janis watch will be incompatible with previously run workflows\n- Your configs might break, as previous versions of janis were not cautious about camel case.\n- Your templates might not work with unrecognised keys (try changing them to camel case instead)\n- Changes to BamBai indexes, format is now `.bam.bai`\n\nSee the [CHANGELOG](https://github.com/PMCC-BioinformaticsCore/janis/blob/master/CHANGELOG.md)\nfor more information.\n\n\n### Contributions\n\n> _Further information_: [Development](https://janis.readthedocs.io/en/latest/development/) \n\nTo get help with Janis, please ask a question on [Gitter](ttps://gitter.im/janis-pipelines/community) or \n[raise an issue](https://github.com/PMCC-BioinformaticsCore/janis/issues) on GitHub.\n\nIf you find an issue with the tool definitions, please see the relevant issue page:\n\n- [Pipeline-bioinformatics](https://github.com/PMCC-BioinformaticsCore/janis-bioinformatics/issues)\n\nThis project is work-in-progress and is still in developments. Although we welcome contributions,\ndue to the immature state of this project we recommend raising issues through the\n[Github issues page](https://github.com/PMCC-BioinformaticsCore/janis/issues) for Pipeline related issues.\n\nInformation about the project structure and more on contributing can be found within the documentation.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/PMCC-BioinformaticsCore/janis", "keywords": "pipelines,bioinformatics", "license": "GNU", "maintainer": "", "maintainer_email": "", "name": "janis-pipelines", "package_url": "https://pypi.org/project/janis-pipelines/", "platform": "", "project_url": "https://pypi.org/project/janis-pipelines/", "project_urls": { "Homepage": "https://github.com/PMCC-BioinformaticsCore/janis" }, "release_url": "https://pypi.org/project/janis-pipelines/0.11.6/", "requires_dist": [ "janis-pipelines.core (==v0.11.5)", "janis-pipelines.runner (==v0.11.9)", "janis-pipelines.unix (==v0.11.2)", "janis-pipelines.bioinformatics (==v0.11.3)", "janis-pipelines.pipelines (==v0.11.5)", "janis-pipelines.templates (==v0.12.0)", "janis-pipelines.bioinformatics (==v0.11.3) ; extra == 'bioinformatics'", "janis-pipelines.pipelines (==v0.11.5) ; extra == 'bioinformatics'", "keyring (==21.4.0) ; extra == 'ci'", "setuptools ; extra == 'ci'", "wheel ; extra == 'ci'", "twine ; extra == 'ci'", "docutils ; extra == 'doc'", "sphinx ; extra == 'doc'", "sphinx-rtd-theme ; extra == 'doc'", "recommonmark ; extra == 'doc'" ], "requires_python": "", "summary": "Contains classes and helpers to build a workflow, and provide options to convert to CWL / WDL", "version": "0.11.6", "yanked": false, "yanked_reason": null }, "last_serial": 12068595, "releases": { "0.11.0": [ { "comment_text": "", "digests": { "md5": "e5d98da26159d45aee049802fc6bce3c", "sha256": "137b0d99cce0fad9801149c6b8cc14d9aa0414f3eeb0783d7f2a8fad5fdc28fe" }, "downloads": -1, "filename": "janis_pipelines-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e5d98da26159d45aee049802fc6bce3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29599, "upload_time": "2021-01-08T04:16:39", "upload_time_iso_8601": "2021-01-08T04:16:39.677283Z", "url": "https://files.pythonhosted.org/packages/b8/77/b14459991c01a10c4a5c0e19a3bb7ba2fcf5d44f4a52776d31ff52fd5c00/janis_pipelines-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "614f0592553ee239b0dd4dba65f987ba", "sha256": "5c8a7696369457e8442550df5ffc408623bcf1136a5ca2b2d07555881bda1373" }, "downloads": -1, "filename": "janis pipelines-0.11.0.tar.gz", "has_sig": false, "md5_digest": "614f0592553ee239b0dd4dba65f987ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17034, "upload_time": "2021-01-08T04:16:41", "upload_time_iso_8601": "2021-01-08T04:16:41.079150Z", "url": "https://files.pythonhosted.org/packages/7e/ed/6c1b7a6e6e093ef35b27a5d7a60df4abdf747276ba76ffbba93381918fac/janis%20pipelines-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "8659cd128f1b5c71be927c8dee02efc8", "sha256": "b0074d7c93a30f43470dad76a533ed38cb47ea66c0c741b8f5bb26b42b793748" }, "downloads": -1, "filename": "janis_pipelines-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8659cd128f1b5c71be927c8dee02efc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27800, "upload_time": "2021-04-01T05:06:58", "upload_time_iso_8601": "2021-04-01T05:06:58.268437Z", "url": "https://files.pythonhosted.org/packages/56/1b/9f3d099e24e5c21bec20156396ea181a5cfb67ca813b5acda37425dd0122/janis_pipelines-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e0caf3b9946530694fd189c0f00f1d", "sha256": "3cf758b2c5179ed5ead6ee93f03fb5615dff0455e010f79bd9949cba17413462" }, "downloads": -1, "filename": "janis pipelines-0.11.1.tar.gz", "has_sig": false, "md5_digest": "08e0caf3b9946530694fd189c0f00f1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14939, "upload_time": "2021-04-01T05:06:59", "upload_time_iso_8601": "2021-04-01T05:06:59.435703Z", "url": "https://files.pythonhosted.org/packages/16/b7/fa8ee12bb91830a0369fc4d80a5d67014309269dceed04755cf80fd07274/janis%20pipelines-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "21847cfd3a0806ad141435bb262a3414", "sha256": "ab1f8d9a3c31d7f8f00ca220ca4274b6f8ea71fd15f071f0e532f83e94c6030f" }, "downloads": -1, "filename": "janis_pipelines-0.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "21847cfd3a0806ad141435bb262a3414", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27949, "upload_time": "2021-05-03T05:59:29", "upload_time_iso_8601": "2021-05-03T05:59:29.128922Z", "url": "https://files.pythonhosted.org/packages/d0/a1/06aacbad1cf7d7d0804622c06043e056c2516debbb17dbc1b6b71a20d077/janis_pipelines-0.11.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11aa6b10e906169a2580aca4fe0c2f13", "sha256": "d996de8ab29823e570eae2b6590c7a61b7cd9bc9d9706e593edd370b60cd0247" }, "downloads": -1, "filename": "janis pipelines-0.11.2.tar.gz", "has_sig": false, "md5_digest": "11aa6b10e906169a2580aca4fe0c2f13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27245, "upload_time": "2021-05-03T05:59:30", "upload_time_iso_8601": "2021-05-03T05:59:30.281566Z", "url": "https://files.pythonhosted.org/packages/20/42/e2bc1ae709117ba7434a856f8e16c62225c894e89b1de65baf47371737bf/janis%20pipelines-0.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "9b4f5d1fb5f09af510882706f1d5945e", "sha256": "470864bb41e75d71f32ee1b92f0a53f7ffae3cb2040a99adaae2c118fb356bb1" }, "downloads": -1, "filename": "janis_pipelines-0.11.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9b4f5d1fb5f09af510882706f1d5945e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27947, "upload_time": "2021-06-01T10:33:56", "upload_time_iso_8601": "2021-06-01T10:33:56.044020Z", "url": "https://files.pythonhosted.org/packages/de/29/5dc42dd3a53f0cdc0e3c4073bc5d2b42071b489dc59b2c54aaeeddb04825/janis_pipelines-0.11.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6edeaea5347634feb06a548d62a223df", "sha256": "f6186c62aae9f6bb95f62d21283684d45b6b1b9c324ec25a68905d33cf7d46da" }, "downloads": -1, "filename": "janis pipelines-0.11.3.tar.gz", "has_sig": false, "md5_digest": "6edeaea5347634feb06a548d62a223df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27244, "upload_time": "2021-06-01T10:33:57", "upload_time_iso_8601": "2021-06-01T10:33:57.210491Z", "url": "https://files.pythonhosted.org/packages/97/e0/fa5792b18a9dadb7e6d42cfd2d474f8f699174308324d56e2e40227a2980/janis%20pipelines-0.11.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.4": [ { "comment_text": "", "digests": { "md5": "27f043d2a8949e3ad64f3a4ef4fbf3d7", "sha256": "a300efd646cfade38f535b96b3177447960f1b0bc2c1e8904358f40cacda3bf1" }, "downloads": -1, "filename": "janis_pipelines-0.11.4-py3-none-any.whl", "has_sig": false, "md5_digest": "27f043d2a8949e3ad64f3a4ef4fbf3d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27951, "upload_time": "2021-06-10T02:27:20", "upload_time_iso_8601": "2021-06-10T02:27:20.161623Z", "url": "https://files.pythonhosted.org/packages/af/6e/33eda4d65f385e0cc658297a8d0facadd8978f0b331b8a518aca3a7962b7/janis_pipelines-0.11.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e66298aa3d8918f542da022f48da861", "sha256": "5d305390ab11dcaaecfbef309f788c5504446f5039722ba3a09afda55ffe64df" }, "downloads": -1, "filename": "janis pipelines-0.11.4.tar.gz", "has_sig": false, "md5_digest": "7e66298aa3d8918f542da022f48da861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27252, "upload_time": "2021-06-10T02:27:21", "upload_time_iso_8601": "2021-06-10T02:27:21.417847Z", "url": "https://files.pythonhosted.org/packages/86/c8/9fb7dfd28798cf49b35241de943e0748fad8d351e65aac5b1e9aafa07a18/janis%20pipelines-0.11.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.6": [ { "comment_text": "", "digests": { "md5": "2b00ffd37b2258391a4ea85b34740c91", "sha256": "5fd31dcad87ef6d3ca6088a3591d9bc63a015625b10730e0a600079644ff032e" }, "downloads": -1, "filename": "janis_pipelines-0.11.6-py3-none-any.whl", "has_sig": false, "md5_digest": "2b00ffd37b2258391a4ea85b34740c91", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28575, "upload_time": "2021-11-19T11:10:44", "upload_time_iso_8601": "2021-11-19T11:10:44.116997Z", "url": "https://files.pythonhosted.org/packages/b9/dd/cf0c63551644fd5da90f4f37ab9d92c525336d0e3bd41ad882039270f1cc/janis_pipelines-0.11.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e54b7d138a89f3b827a5717ae29faaef", "sha256": "f63350b1e0807fcaf730f6c2fc035901bfc128a5ca058fdd0455a71a016ebd6f" }, "downloads": -1, "filename": "janis pipelines-0.11.6.tar.gz", "has_sig": false, "md5_digest": "e54b7d138a89f3b827a5717ae29faaef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27365, "upload_time": "2021-11-19T11:10:45", "upload_time_iso_8601": "2021-11-19T11:10:45.460582Z", "url": "https://files.pythonhosted.org/packages/22/84/ef031f3394faf2e2a2405740d896adc139153f5386b76b5903a46a0bdd9b/janis%20pipelines-0.11.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "5674987934a9326bb8cac51052489594", "sha256": "18c3ff9c9eb2baafbbb3d1e8bf09783dc564cc04fb3d32e6ff2a3d675ed2d4e2" }, "downloads": -1, "filename": "janis_pipelines-0.2.10-py3-none-any.whl", "has_sig": false, "md5_digest": "5674987934a9326bb8cac51052489594", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54249, "upload_time": "2019-02-14T01:23:34", "upload_time_iso_8601": "2019-02-14T01:23:34.417093Z", "url": "https://files.pythonhosted.org/packages/63/63/e48d33293e68d904d96a5f22d10c7db03b79b4805dea196de7e668bf49b9/janis_pipelines-0.2.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "384f082073e0085f10eab946d60ad352", "sha256": "a4b4ac5a392848425fa2e6a4da167c2eec584d82746795465c47a480fbdf7f35" }, "downloads": -1, "filename": "janis pipelines-0.2.10.tar.gz", "has_sig": false, "md5_digest": "384f082073e0085f10eab946d60ad352", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40880, "upload_time": "2019-02-14T01:23:35", "upload_time_iso_8601": "2019-02-14T01:23:35.994796Z", "url": "https://files.pythonhosted.org/packages/5e/92/34c01f668a3859d08efcb3d92ebae16f18821c18e366bd9f8f6dcc8d3807/janis%20pipelines-0.2.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "baebfb31c0e8bab38caa05c786d7c061", "sha256": "06ccb1fa0a3f42ca570eeb1cb9ffa6ba6640003d597f6ca69d69af12fa950875" }, "downloads": -1, "filename": "janis_pipelines-0.2.11-py3-none-any.whl", "has_sig": false, "md5_digest": "baebfb31c0e8bab38caa05c786d7c061", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 55477, "upload_time": "2019-02-20T00:59:40", "upload_time_iso_8601": "2019-02-20T00:59:40.058678Z", "url": "https://files.pythonhosted.org/packages/36/c8/9812a089ac57a8bc6d1882586ce92b3acf8620a7223e090b88f30b161267/janis_pipelines-0.2.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6c34a605f0a0032aea9c0946d7b0ea0", "sha256": "9c81f814e96d484deaf14f03c984624d2420d4be0f0bcdae55adeb1c64cc8b08" }, "downloads": -1, "filename": "janis pipelines-0.2.11.tar.gz", "has_sig": false, "md5_digest": "c6c34a605f0a0032aea9c0946d7b0ea0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41124, "upload_time": "2019-02-20T00:59:41", "upload_time_iso_8601": "2019-02-20T00:59:41.618814Z", "url": "https://files.pythonhosted.org/packages/17/de/850bb30196ca030669953b00a00cc307852b536199469d6416db58cf9a1e/janis%20pipelines-0.2.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "f40e242a7b958bc32d19956626f821e9", "sha256": "f9be5d0297a7cf1578339db1ed41211406ad9ce1146d33d4820d1f30c2b08dd0" }, "downloads": -1, "filename": "janis_pipelines-0.2.12-py3-none-any.whl", "has_sig": false, "md5_digest": "f40e242a7b958bc32d19956626f821e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 59635, "upload_time": "2019-03-01T05:48:06", "upload_time_iso_8601": "2019-03-01T05:48:06.614470Z", "url": "https://files.pythonhosted.org/packages/2f/d8/686a61cbfbcf1be1c334d2488b652b1b840a6578360db767795d25301d63/janis_pipelines-0.2.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ae724b2b20c5a70fe1885657181c6fe", "sha256": "c2699d811ca5b8bc28c35f6e3434514e51e7f9e9247478b7ead1edc044471234" }, "downloads": -1, "filename": "janis pipelines-0.2.12.tar.gz", "has_sig": false, "md5_digest": "9ae724b2b20c5a70fe1885657181c6fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45141, "upload_time": "2019-03-01T05:48:08", "upload_time_iso_8601": "2019-03-01T05:48:08.115572Z", "url": "https://files.pythonhosted.org/packages/f1/45/c577b4ccf852aded629fdf366f6160e339acce14bc69144a2657c1368892/janis%20pipelines-0.2.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "8ea96729b568fd7167f810f9e4ac271d", "sha256": "fd7c8e2ec220f0331eebc2cd7bd8985b72b6d99e96c5ae9ede43e0222687ef1c" }, "downloads": -1, "filename": "janis_pipelines-0.2.13-py3-none-any.whl", "has_sig": false, "md5_digest": "8ea96729b568fd7167f810f9e4ac271d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 72005, "upload_time": "2019-04-11T23:34:06", "upload_time_iso_8601": "2019-04-11T23:34:06.048730Z", "url": "https://files.pythonhosted.org/packages/ea/72/436c95288ab59838baa36de21ebe8682ce5e38b25bfed69ecb7ff04007da/janis_pipelines-0.2.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a5f80372c5676b81714b8151027295f", "sha256": "60332047f5f3f5be2c69cea65fa6308d7623460ef344c8a1192c04f11c342cce" }, "downloads": -1, "filename": "janis pipelines-0.2.13.tar.gz", "has_sig": false, "md5_digest": "6a5f80372c5676b81714b8151027295f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45777, "upload_time": "2019-04-11T23:34:07", "upload_time_iso_8601": "2019-04-11T23:34:07.589490Z", "url": "https://files.pythonhosted.org/packages/ec/87/9baeecd891119d18eff29a03dac5b82e21c5948fb28143bf395771f05b1a/janis%20pipelines-0.2.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "03d2f8ae216abeaca998dcf83a159895", "sha256": "f97b51b9aa23a722e5b36ebc2710cc4a65f956008a112b529829c6e1d1196d64" }, "downloads": -1, "filename": "janis_pipelines-0.2.14-py3-none-any.whl", "has_sig": false, "md5_digest": "03d2f8ae216abeaca998dcf83a159895", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 73185, "upload_time": "2019-04-18T06:13:34", "upload_time_iso_8601": "2019-04-18T06:13:34.183229Z", "url": "https://files.pythonhosted.org/packages/46/de/154344b15a718219351ff14103751ea5832c2a38cd9bd21c62888f3f6658/janis_pipelines-0.2.14-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdb1f52673b3b395b7f151764fe34448", "sha256": "593ca5219efaa6a3e0fa76773260dc517379479e93860d77b1c2630a8f71ec5d" }, "downloads": -1, "filename": "janis pipelines-0.2.14.tar.gz", "has_sig": false, "md5_digest": "cdb1f52673b3b395b7f151764fe34448", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46273, "upload_time": "2019-04-18T06:13:35", "upload_time_iso_8601": "2019-04-18T06:13:35.690819Z", "url": "https://files.pythonhosted.org/packages/30/42/a1570f30e95ab1ddfc313d5d14c7df55d01da531b97746617429acf2917e/janis%20pipelines-0.2.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "dfbc69730c370ab07d44c1afa435b24a", "sha256": "1a19f8a01976ce5d2e4b463fa5d4f18e7609da6f02eadbd19ff0670d471a5d7c" }, "downloads": -1, "filename": "janis_pipelines-0.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "dfbc69730c370ab07d44c1afa435b24a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 77867, "upload_time": "2019-05-10T05:07:46", "upload_time_iso_8601": "2019-05-10T05:07:46.552468Z", "url": "https://files.pythonhosted.org/packages/af/56/4355666411eb4456ed7cb0c7da2903ab63d5eaf5dc841d30c6f33327a2c2/janis_pipelines-0.2.15-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc43951ae6bbce890dcc677cfa4c7894", "sha256": "09744907d9b787554be7266431f7807a24daccd95573256c94fc7414395af0be" }, "downloads": -1, "filename": "janis pipelines-0.2.15.tar.gz", "has_sig": false, "md5_digest": "cc43951ae6bbce890dcc677cfa4c7894", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48508, "upload_time": "2019-05-10T05:07:48", "upload_time_iso_8601": "2019-05-10T05:07:48.309993Z", "url": "https://files.pythonhosted.org/packages/6d/32/0253be4e6f08d23ca197906f60642c62e07ef0499c22cd9cbf0cd77e3b8a/janis%20pipelines-0.2.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "c223f5cd523005c741b742885bc99dad", "sha256": "761c30fff3f66907a248731d0d928bbfee966a0d48dfd3b8732a381b080cd6bb" }, "downloads": -1, "filename": "janis_pipelines-0.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "c223f5cd523005c741b742885bc99dad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 77880, "upload_time": "2019-05-10T05:37:22", "upload_time_iso_8601": "2019-05-10T05:37:22.320833Z", "url": "https://files.pythonhosted.org/packages/eb/6e/ae04f5e2c95b522bb8aa39f3f80d34035ad67e3abf09d0cab2286ba740c7/janis_pipelines-0.2.16-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1335dae9ad3090a71bd2bc45b6225169", "sha256": "f5046882968b99db049b62db0d884f2093e14ac6066cc866c45b9947d78ffabb" }, "downloads": -1, "filename": "janis pipelines-0.2.16.tar.gz", "has_sig": false, "md5_digest": "1335dae9ad3090a71bd2bc45b6225169", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48515, "upload_time": "2019-05-10T05:37:23", "upload_time_iso_8601": "2019-05-10T05:37:23.668223Z", "url": "https://files.pythonhosted.org/packages/a6/0a/c8125c821b0962188c5517b267da6dd87a08a17726a7eac469b470d90ca7/janis%20pipelines-0.2.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "73720fcd00e5d10111edb892bfe8c166", "sha256": "b56d911686c31939792dfa8f1e40d27ea99532d120372f2e9521b39d53ef8149" }, "downloads": -1, "filename": "janis_pipelines-0.2.17-py3-none-any.whl", "has_sig": false, "md5_digest": "73720fcd00e5d10111edb892bfe8c166", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 80245, "upload_time": "2019-05-30T22:18:35", "upload_time_iso_8601": "2019-05-30T22:18:35.789417Z", "url": "https://files.pythonhosted.org/packages/5a/08/5ed39ca1442044886ebc2ccad8829e94190aa0c61198c0c0223635e15ad6/janis_pipelines-0.2.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e414a36384c94878c453a6132bf4d737", "sha256": "65aee21a99bf287836f4560827043d21635a39a8f84ee0667b1398c22bef59e1" }, "downloads": -1, "filename": "janis pipelines-0.2.17.tar.gz", "has_sig": false, "md5_digest": "e414a36384c94878c453a6132bf4d737", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49785, "upload_time": "2019-05-30T22:18:37", "upload_time_iso_8601": "2019-05-30T22:18:37.160807Z", "url": "https://files.pythonhosted.org/packages/4b/df/33e60f78ed4ea93e434ea62a78d3714a5b82a314b23f836a524309ec450a/janis%20pipelines-0.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "88316344a8e880152c25c01d5425a20f", "sha256": "effe333f7f7754e28b9c1e50faa9d9507f7d5ad9f9e49985b5084bd2ffc9e2e9" }, "downloads": -1, "filename": "janis pipelines-0.2.3.tar.gz", "has_sig": false, "md5_digest": "88316344a8e880152c25c01d5425a20f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4430, "upload_time": "2019-01-30T21:30:28", "upload_time_iso_8601": "2019-01-30T21:30:28.485968Z", "url": "https://files.pythonhosted.org/packages/bf/b9/546de30f737b156862544d78efdb7a4f936faf57ba41d783d555eb120d65/janis%20pipelines-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "3ff2df538932e6b16ae938ba81e122c2", "sha256": "129e6988469627447c9ff3af2581554f630517774bb4a14be2f2a3f5fa851757" }, "downloads": -1, "filename": "janis pipelines-0.2.4.tar.gz", "has_sig": false, "md5_digest": "3ff2df538932e6b16ae938ba81e122c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24781, "upload_time": "2019-01-31T02:08:02", "upload_time_iso_8601": "2019-01-31T02:08:02.788933Z", "url": "https://files.pythonhosted.org/packages/c2/f9/f691d68fca4727dff539757fec0373de42a40e647017541b3a410f09ed73/janis%20pipelines-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "b36360f694696a5854c9ea990684307f", "sha256": "a7ee865a4710190b48a92a836288f3ef7fe1f37f0cc7d9663a55bc7f1eb4ecde" }, "downloads": -1, "filename": "janis pipelines-0.2.5.tar.gz", "has_sig": false, "md5_digest": "b36360f694696a5854c9ea990684307f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42260, "upload_time": "2019-02-01T02:10:22", "upload_time_iso_8601": "2019-02-01T02:10:22.586590Z", "url": "https://files.pythonhosted.org/packages/b5/c5/fb7955f57532033fbaf6d90c587b9566b95c1b9f08fb9d7eb4e4885fd068/janis%20pipelines-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "984b0ded9c8e145f98d10a0608a00f75", "sha256": "71bc00ffcf6093d142d677476c159c0b0cf1c0bbc80b792a750ff71c7726b1e7" }, "downloads": -1, "filename": "janis_pipelines-0.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "984b0ded9c8e145f98d10a0608a00f75", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54343, "upload_time": "2019-02-01T03:52:52", "upload_time_iso_8601": "2019-02-01T03:52:52.073392Z", "url": "https://files.pythonhosted.org/packages/ed/9a/952f9dab0c33d4a0c0d01d90f57d278f96d29d6a9fa9aadd2ee6e1139284/janis_pipelines-0.2.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de564412c48e8748bf4e4db0b9456137", "sha256": "315d3fad097d687c5f678aaee64d782ace1d1e49f528d1745f086c37ccc47359" }, "downloads": -1, "filename": "janis pipelines-0.2.6.tar.gz", "has_sig": false, "md5_digest": "de564412c48e8748bf4e4db0b9456137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42306, "upload_time": "2019-02-01T03:49:24", "upload_time_iso_8601": "2019-02-01T03:49:24.022526Z", "url": "https://files.pythonhosted.org/packages/c5/78/54b9b471614803e0476b367bcabe558847277b62e54e8925a967fecb6ced/janis%20pipelines-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "93aa12aa39053438f0d04aa643aced59", "sha256": "6f675030efee7974891baa7ba06c8fa28c9819525c2ed9b13ff6656063822d87" }, "downloads": -1, "filename": "janis_pipelines-0.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "93aa12aa39053438f0d04aa643aced59", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53449, "upload_time": "2019-02-01T04:27:56", "upload_time_iso_8601": "2019-02-01T04:27:56.618922Z", "url": "https://files.pythonhosted.org/packages/80/98/55b2662359cae4bac69b5f7f147ef1fce73530deaea86243e074ef690510/janis_pipelines-0.2.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0441b0247275476f8506d3c91d96282e", "sha256": "99cc878970bcef8e4822da36f961685f5f04d652f681e0e688b112258c07a10a" }, "downloads": -1, "filename": "janis pipelines-0.2.7.tar.gz", "has_sig": false, "md5_digest": "0441b0247275476f8506d3c91d96282e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41398, "upload_time": "2019-02-01T04:27:58", "upload_time_iso_8601": "2019-02-01T04:27:58.100141Z", "url": "https://files.pythonhosted.org/packages/0d/a2/fb7d7478db2adb7b1606990f2cc3cc34418d4f76a1fdfe832d7d7e63f2cf/janis%20pipelines-0.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "a057a7004d31e2688df59a3c212c67ab", "sha256": "2a16c24fca425fa14f6ab8f76ef4523bc3f1ef1f492ccb9f3b7a0e0750b585e3" }, "downloads": -1, "filename": "janis_pipelines-0.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "a057a7004d31e2688df59a3c212c67ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53982, "upload_time": "2019-02-04T03:29:13", "upload_time_iso_8601": "2019-02-04T03:29:13.179238Z", "url": "https://files.pythonhosted.org/packages/6f/e3/c0179e1a5ece88b6384fd62c72129ae0f94837a01aa90d707823078c63e1/janis_pipelines-0.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8818396b3b369d24735d6fd0e744380", "sha256": "c7c90f1802d5322fe64dd5dd051df49373eeee1fd38b2dfbbb85cd80acaa6c55" }, "downloads": -1, "filename": "janis pipelines-0.2.8.tar.gz", "has_sig": false, "md5_digest": "d8818396b3b369d24735d6fd0e744380", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40618, "upload_time": "2019-02-04T03:29:14", "upload_time_iso_8601": "2019-02-04T03:29:14.904896Z", "url": "https://files.pythonhosted.org/packages/2d/ff/74d8b048521f5fde55ad2a9035706a938380cc1ec0ed1872661613b72237/janis%20pipelines-0.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "34c80384e681627c034f55ac3274a455", "sha256": "8c08796f6db55c05338125700773966e1b4bfef9d03e037386c91c712d99cefa" }, "downloads": -1, "filename": "janis_pipelines-0.2.9-py3-none-any.whl", "has_sig": false, "md5_digest": "34c80384e681627c034f55ac3274a455", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54084, "upload_time": "2019-02-04T22:48:50", "upload_time_iso_8601": "2019-02-04T22:48:50.919478Z", "url": "https://files.pythonhosted.org/packages/6c/3a/56acb40f70538651247c2d1ba4fd0a3d254309f66a0405825c3b6bbbd45a/janis_pipelines-0.2.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbb970cece193d25222402ee35662f83", "sha256": "921ee12f4cbfd9f5ceac2a55826d2703dcf9c6bc539dbf34946a751ce0ca1dae" }, "downloads": -1, "filename": "janis pipelines-0.2.9.tar.gz", "has_sig": false, "md5_digest": "cbb970cece193d25222402ee35662f83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40677, "upload_time": "2019-02-04T22:48:52", "upload_time_iso_8601": "2019-02-04T22:48:52.432388Z", "url": "https://files.pythonhosted.org/packages/9e/2d/eda46e3f2eb1009683e19b87e0db5d62dd963f94fa550e3918d3e7598d6e/janis%20pipelines-0.2.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "ee6f351dd03e9c2743fe9cd119e8d964", "sha256": "e7bbc426caf3c47e2c9720f7fa3c9c1ef577cb3ff601316c59adb7f1f3244cfe" }, "downloads": -1, "filename": "janis_pipelines-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee6f351dd03e9c2743fe9cd119e8d964", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 85596, "upload_time": "2019-06-25T02:03:32", "upload_time_iso_8601": "2019-06-25T02:03:32.215755Z", "url": "https://files.pythonhosted.org/packages/13/c5/3d1d498bda9ddc10d06e2d86f8894554a1d7d6b415aae32e0fc1af5e96dc/janis_pipelines-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c410cd7d5f7da917d8259779cd780654", "sha256": "10b995718ac3f148f77ad311744c70f4438720d52e8b4ebe4be6237232695380" }, "downloads": -1, "filename": "janis pipelines-0.3.0.tar.gz", "has_sig": false, "md5_digest": "c410cd7d5f7da917d8259779cd780654", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54595, "upload_time": "2019-06-25T02:03:33", "upload_time_iso_8601": "2019-06-25T02:03:33.796737Z", "url": "https://files.pythonhosted.org/packages/98/c2/9b474f8f91136915aa2cac8d948030b5ac3f4c6dacbc3d0139144febcd35/janis%20pipelines-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d231457b34f12a6ebc6af8098877e7be", "sha256": "99537656407c1c2960c54dcf14d87ad93a11721a1df78af87ac7dc5647787f58" }, "downloads": -1, "filename": "janis_pipelines-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d231457b34f12a6ebc6af8098877e7be", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88928, "upload_time": "2019-07-09T05:21:51", "upload_time_iso_8601": "2019-07-09T05:21:51.642917Z", "url": "https://files.pythonhosted.org/packages/69/6e/14393fc2a15a77698171b948c61becb471cfc13daa8ae82144700d2c4919/janis_pipelines-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f276ea0d72ffb0dbc2673cca8ed3d2a3", "sha256": "95df1507d2c6ec8d7878f73b54ab124a46a90ffb343af65730b748cfe7f08bd0" }, "downloads": -1, "filename": "janis pipelines-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f276ea0d72ffb0dbc2673cca8ed3d2a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58133, "upload_time": "2019-07-09T05:21:53", "upload_time_iso_8601": "2019-07-09T05:21:53.001989Z", "url": "https://files.pythonhosted.org/packages/d1/45/9c9baebe50c70ae7caef26c726eb47077a984c1a26239f77a2b6bd1bd0ff/janis%20pipelines-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3827e5ea10c0eb1fbbfddd807a47eee3", "sha256": "e7878658bb31c3b6ca90efe91bc8daf7aa43547bee125495b85c4cf6b4244667" }, "downloads": -1, "filename": "janis_pipelines-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "3827e5ea10c0eb1fbbfddd807a47eee3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88454, "upload_time": "2019-07-17T00:24:25", "upload_time_iso_8601": "2019-07-17T00:24:25.537218Z", "url": "https://files.pythonhosted.org/packages/11/42/3ff34e4034eb28e535693327a468f8b8ef8cf7ce7777363bcc1889fc852a/janis_pipelines-0.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0b0746d1336be3322f7189f8f0fab31", "sha256": "c64a89ff53b8e2f3b25276c42a5771f51a7c3a78405d4c1bd6a72eab8ac80198" }, "downloads": -1, "filename": "janis pipelines-0.3.2.tar.gz", "has_sig": false, "md5_digest": "a0b0746d1336be3322f7189f8f0fab31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58060, "upload_time": "2019-07-17T00:24:26", "upload_time_iso_8601": "2019-07-17T00:24:26.959849Z", "url": "https://files.pythonhosted.org/packages/e3/b4/9ef1aa11993cb2880f921f7bfd26552b17b5efc3af1dd2dc218ec4781cd7/janis%20pipelines-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "f80e9aa415b03a552d14b4c5540d755b", "sha256": "a3ba09a3b87887fd90bc0f6ccc7d08c6563164a2a12aff29e9b9920da6277f17" }, "downloads": -1, "filename": "janis_pipelines-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f80e9aa415b03a552d14b4c5540d755b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23212, "upload_time": "2019-07-24T05:35:26", "upload_time_iso_8601": "2019-07-24T05:35:26.911310Z", "url": "https://files.pythonhosted.org/packages/80/78/35a04cc794764acd562ebb96fe3bae5bcbc2413c4490a36ec1277bef7edc/janis_pipelines-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c12beef9ebe28ee0580a0c4af9060f5", "sha256": "62672046fb98a3d349ce86e21fa6a355d599a79968f3fd6cceeaeecd5921ec36" }, "downloads": -1, "filename": "janis pipelines-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0c12beef9ebe28ee0580a0c4af9060f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9952, "upload_time": "2019-07-24T05:35:28", "upload_time_iso_8601": "2019-07-24T05:35:28.183206Z", "url": "https://files.pythonhosted.org/packages/0a/1b/be9139951c0555cb330750f0ee8668737fdb6534f8dc6db9969731d011ba/janis%20pipelines-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "90aefb6512f347ebe636db7506516d9c", "sha256": "a2faaa2e5982538d08781ed070a916088ed4da58e32c5860e2844ffc4f9e1f0d" }, "downloads": -1, "filename": "janis_pipelines-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "90aefb6512f347ebe636db7506516d9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23213, "upload_time": "2019-07-30T13:03:41", "upload_time_iso_8601": "2019-07-30T13:03:41.443654Z", "url": "https://files.pythonhosted.org/packages/e5/ff/2231617a627b08ff0b9017d630582a914b12b6ed28397621ddf403935dc8/janis_pipelines-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "999cfa2202d392ab1da20addd411c0a5", "sha256": "2dbefda34d11f6221d68a13921b24c20350271c2ed5537aba7682f1a11a54855" }, "downloads": -1, "filename": "janis pipelines-0.5.0.tar.gz", "has_sig": false, "md5_digest": "999cfa2202d392ab1da20addd411c0a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9931, "upload_time": "2019-07-30T13:03:42", "upload_time_iso_8601": "2019-07-30T13:03:42.665681Z", "url": "https://files.pythonhosted.org/packages/b2/6e/0e227d4ee7cee7f047d7f3f53c6d5b8bb3b0bcd09d312dd0ca82335ba9a3/janis%20pipelines-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "14b7f52a695051d4e1764826a19c9d6a", "sha256": "d3180032df494aef90ef949eb6777ae7d1e2e2db6c54ec4eb4a90f4215c545ec" }, "downloads": -1, "filename": "janis_pipelines-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "14b7f52a695051d4e1764826a19c9d6a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23262, "upload_time": "2019-08-14T23:30:39", "upload_time_iso_8601": "2019-08-14T23:30:39.679486Z", "url": "https://files.pythonhosted.org/packages/9e/51/f726e90b72cebd6b53e9486ce864f843e61720e0c8eac238fbc0341d9d6c/janis_pipelines-0.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b6aa0ec1c61b669a2b1e454d351c17a", "sha256": "971803e1c52147840ade75b6ea7fc38fa123fb584125a07bc6a276a1e90a5dfd" }, "downloads": -1, "filename": "janis pipelines-0.5.2.tar.gz", "has_sig": false, "md5_digest": "2b6aa0ec1c61b669a2b1e454d351c17a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10090, "upload_time": "2019-08-14T23:30:41", "upload_time_iso_8601": "2019-08-14T23:30:41.023669Z", "url": "https://files.pythonhosted.org/packages/43/a1/4ec4bbf1a9a71d6e9a0548a6288311bc7d8536a71b3dfb0d2742a44e4fec/janis%20pipelines-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "1882f029a684ef31cbdda7e9016c264f", "sha256": "1bd49474d871165ff773b6eff90c8e88fbc512fc36f6ed583fc8b7ddfc899af6" }, "downloads": -1, "filename": "janis_pipelines-0.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1882f029a684ef31cbdda7e9016c264f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23273, "upload_time": "2019-08-14T23:46:45", "upload_time_iso_8601": "2019-08-14T23:46:45.630247Z", "url": "https://files.pythonhosted.org/packages/30/90/3c0b219144c53218737c4222d44452391b9bb40caa214148362bd4f37ad1/janis_pipelines-0.5.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "969e0003de8b976cb595792efb61927a", "sha256": "7953039ae08263279f5c455e52c48be8124ccc12f9a9911f856d6856ca219b8a" }, "downloads": -1, "filename": "janis pipelines-0.5.3.tar.gz", "has_sig": false, "md5_digest": "969e0003de8b976cb595792efb61927a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10097, "upload_time": "2019-08-14T23:46:47", "upload_time_iso_8601": "2019-08-14T23:46:47.154600Z", "url": "https://files.pythonhosted.org/packages/ed/2a/0a9e8fff01a556cc7df4f4a2ad3536a41890560de28f60607fb211d346e4/janis%20pipelines-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "d86fb0e93134aa3f5e6d2a5568bcab07", "sha256": "0e4043561f36bcb9cba5b927860c47c5e6d10949b7fdf362d425484c7644346d" }, "downloads": -1, "filename": "janis_pipelines-0.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d86fb0e93134aa3f5e6d2a5568bcab07", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23269, "upload_time": "2019-08-22T23:38:25", "upload_time_iso_8601": "2019-08-22T23:38:25.008998Z", "url": "https://files.pythonhosted.org/packages/78/1b/903e0ced685a399c31260edfaf643f6972b8a2de04d1335c1df8b3f9872f/janis_pipelines-0.5.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f42dfbed24102f9efe8cf9c969d377db", "sha256": "9a86fc304713f09f0bc1d69a6eaa193b1f9e6ffb13556c9a73d4b728edc36ea2" }, "downloads": -1, "filename": "janis pipelines-0.5.4.tar.gz", "has_sig": false, "md5_digest": "f42dfbed24102f9efe8cf9c969d377db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10096, "upload_time": "2019-08-22T23:38:26", "upload_time_iso_8601": "2019-08-22T23:38:26.370785Z", "url": "https://files.pythonhosted.org/packages/30/d9/24de99e21125758854b9a3defb95acb20b6e0125354286c8d7a23b9ea325/janis%20pipelines-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d186431657fec252adc8bf48c317c67f", "sha256": "7998c289bb4db542831dc9b6c2801c7aeb7218f9e20701abe79bd7abf54972df" }, "downloads": -1, "filename": "janis_pipelines-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d186431657fec252adc8bf48c317c67f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23020, "upload_time": "2019-09-26T05:34:14", "upload_time_iso_8601": "2019-09-26T05:34:14.627677Z", "url": "https://files.pythonhosted.org/packages/09/01/ddbbf7d40e9cb7171a92d252b0608675877616a6e07f7a2968f82f7247dc/janis_pipelines-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ae520b2d3a012a10a6e66db5b7cc292", "sha256": "708f9ce96ed5cbb4a3398b9a6c68285a0d4a81848799704cc0855e1f769b3e7e" }, "downloads": -1, "filename": "janis pipelines-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4ae520b2d3a012a10a6e66db5b7cc292", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9716, "upload_time": "2019-09-26T05:34:16", "upload_time_iso_8601": "2019-09-26T05:34:16.413486Z", "url": "https://files.pythonhosted.org/packages/97/e5/86912c1fa9b12542dd4e044c6974885f6e07a8579263c8b1cacac1dee46a/janis%20pipelines-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "027910429e29c9a08a90ea91ef24bf66", "sha256": "386bc0fd9aac16f7e3ad4b8954a621eda231cac33fa83f4e7f2c44af025389cf" }, "downloads": -1, "filename": "janis_pipelines-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "027910429e29c9a08a90ea91ef24bf66", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23587, "upload_time": "2019-10-25T06:14:58", "upload_time_iso_8601": "2019-10-25T06:14:58.767212Z", "url": "https://files.pythonhosted.org/packages/1b/62/b9338219f77e55feb0c1b74a9b9871429fd5c11c6d399380d253fac753ce/janis_pipelines-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9df430a223ac9a153c48e244ef2e032d", "sha256": "1103c64494f210ec42edcac7aa9bd55cc34b7d104ca704bcccc670cf665b99f5" }, "downloads": -1, "filename": "janis pipelines-0.7.0.tar.gz", "has_sig": false, "md5_digest": "9df430a223ac9a153c48e244ef2e032d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9724, "upload_time": "2019-10-25T06:15:00", "upload_time_iso_8601": "2019-10-25T06:15:00.526783Z", "url": "https://files.pythonhosted.org/packages/be/7e/3d921694e48cab21744793655832a118a6cb87434801c3fd74499f64ca41/janis%20pipelines-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "2fc1027d5671abc9050d518abf127a5e", "sha256": "92d5d89734cc457717a12d41026870eec1b3c44bccaae3741cfc246e15597ff1" }, "downloads": -1, "filename": "janis_pipelines-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2fc1027d5671abc9050d518abf127a5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23707, "upload_time": "2019-12-02T04:41:16", "upload_time_iso_8601": "2019-12-02T04:41:16.384108Z", "url": "https://files.pythonhosted.org/packages/3d/08/9526b0ff954c606120619bc0fb25df367dca86b063d30bc10f37f369a40f/janis_pipelines-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c939635895a8934a0cf02ec190209f52", "sha256": "ba8d94245514036b536acf919c3585d280236152aef257c6e0841aec97b0adf5" }, "downloads": -1, "filename": "janis pipelines-0.7.1.tar.gz", "has_sig": false, "md5_digest": "c939635895a8934a0cf02ec190209f52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9903, "upload_time": "2019-12-02T04:41:18", "upload_time_iso_8601": "2019-12-02T04:41:18.016737Z", "url": "https://files.pythonhosted.org/packages/6b/38/9bed4af5c47cbe2ab3789d88229a1a3e0acfe98bb463ed476c5dc7103f79/janis%20pipelines-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e683e664dbdc95db71495fb76afe5118", "sha256": "8bc0b3695e9c9fb01a06fad3c746e5bba67e29a148a54d4dfb241eebefe81b43" }, "downloads": -1, "filename": "janis_pipelines-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e683e664dbdc95db71495fb76afe5118", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23744, "upload_time": "2019-12-09T13:14:16", "upload_time_iso_8601": "2019-12-09T13:14:16.894280Z", "url": "https://files.pythonhosted.org/packages/88/f9/539ed1223588a169a6be9c55c8423f5511547b44337f94c5957a1b5c2dea/janis_pipelines-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d70a2f165aa05d6d6f2fb480347e59ac", "sha256": "0b46375dcc1d78205eea423fd1f74f0409b0fb8cd5793a8f65593a5f0bcbc019" }, "downloads": -1, "filename": "janis pipelines-0.8.0.tar.gz", "has_sig": false, "md5_digest": "d70a2f165aa05d6d6f2fb480347e59ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9952, "upload_time": "2019-12-09T13:14:18", "upload_time_iso_8601": "2019-12-09T13:14:18.058879Z", "url": "https://files.pythonhosted.org/packages/11/38/5a235c8804f6b9a74efaa0554be39736daa1b85ee7962b0232be818447c2/janis%20pipelines-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "39eebf45fcf0811a5b5873770084849a", "sha256": "8dfd4ec49de8fbfed34094621be07efc19bcb81d1ecbb43a0c9325f917d43cff" }, "downloads": -1, "filename": "janis_pipelines-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "39eebf45fcf0811a5b5873770084849a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23817, "upload_time": "2020-01-17T04:22:39", "upload_time_iso_8601": "2020-01-17T04:22:39.558951Z", "url": "https://files.pythonhosted.org/packages/3b/0b/ef7243b11e66286db6429a22485b8d590f16103fbffb3641480d9c512ca7/janis_pipelines-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb0d5d7bef7d81de328c399548188d23", "sha256": "ebafa0f8ddde6181658010605d4fa5ec08a0d23f025874a3d47fedc243bf61be" }, "downloads": -1, "filename": "janis pipelines-0.9.0.tar.gz", "has_sig": false, "md5_digest": "eb0d5d7bef7d81de328c399548188d23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11209, "upload_time": "2020-01-17T04:22:48", "upload_time_iso_8601": "2020-01-17T04:22:48.174049Z", "url": "https://files.pythonhosted.org/packages/20/fa/64b695f068c0313699e398c07fe3ffd00d578b46825b2e1829f7628f3bb0/janis%20pipelines-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "004db7083f64c4b394ea72ff68ef5db6", "sha256": "eb44f77991fa9625fda0801721341f6e855e235c6627a487f460863bbae2cf14" }, "downloads": -1, "filename": "janis_pipelines-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "004db7083f64c4b394ea72ff68ef5db6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23822, "upload_time": "2020-01-17T04:43:25", "upload_time_iso_8601": "2020-01-17T04:43:25.218337Z", "url": "https://files.pythonhosted.org/packages/28/f8/0049f09ec9855106d10575d4b820234d2a61d20c8b087abaa18a84b62bf4/janis_pipelines-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0cc6a84096e69dd3564c12a9e3ef0de", "sha256": "bd31e402bf8e6c8cfea9b70118ceceff2e24c8a2d6556153952417f97bb4210d" }, "downloads": -1, "filename": "janis pipelines-0.9.1.tar.gz", "has_sig": false, "md5_digest": "e0cc6a84096e69dd3564c12a9e3ef0de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11246, "upload_time": "2020-01-17T04:43:26", "upload_time_iso_8601": "2020-01-17T04:43:26.875985Z", "url": "https://files.pythonhosted.org/packages/4e/ca/cf34fac2f6f7c6a5c75386ee39bec50dea80e3c413453b9c8221b7699dba/janis%20pipelines-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "38ecb41efeb29506087d2c8b77b41b5d", "sha256": "b66d6afb5d93e90e91a6d93e936f51bf5f707df620fb000eef0180c1a434526e" }, "downloads": -1, "filename": "janis_pipelines-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "38ecb41efeb29506087d2c8b77b41b5d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23867, "upload_time": "2020-01-24T02:47:25", "upload_time_iso_8601": "2020-01-24T02:47:25.474805Z", "url": "https://files.pythonhosted.org/packages/1e/d1/7bed70ee8964af1dd2f6bdddbd71ccd94b9f971185e6bf5b68f936b3bbdb/janis_pipelines-0.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f880b2f7ff6b884f581a466a9ca8bb2", "sha256": "03f24cfd6730fd2f438b650532b8f7545347decf116751e09f2f36d25a8c661a" }, "downloads": -1, "filename": "janis pipelines-0.9.2.tar.gz", "has_sig": false, "md5_digest": "9f880b2f7ff6b884f581a466a9ca8bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11266, "upload_time": "2020-01-24T02:47:27", "upload_time_iso_8601": "2020-01-24T02:47:27.135932Z", "url": "https://files.pythonhosted.org/packages/2a/92/cf11b2054a8267871f0883814b2d32542f4f733a06a55e8e201718ba9336/janis%20pipelines-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "a73a5210ca8570ec69b08b1006c37362", "sha256": "aa462eec62dcf718f0ad680157b63889b0a02d294dd1a7cd8b0f9ff6c1a4e199" }, "downloads": -1, "filename": "janis_pipelines-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a73a5210ca8570ec69b08b1006c37362", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23875, "upload_time": "2020-02-26T01:46:43", "upload_time_iso_8601": "2020-02-26T01:46:43.548985Z", "url": "https://files.pythonhosted.org/packages/fe/c6/dde11658a7d4214fd5f49627632d12efa5a6b0b3f666d6e1d1780ff2e98f/janis_pipelines-0.9.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056928b72cac42374aa4a1c9839437ce", "sha256": "dbac50af8381f6e1c60df0e650e1f9eb1f6695fa87fe2dbe1b12a1c6ec4e1bec" }, "downloads": -1, "filename": "janis pipelines-0.9.3.tar.gz", "has_sig": false, "md5_digest": "056928b72cac42374aa4a1c9839437ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11290, "upload_time": "2020-02-26T01:46:45", "upload_time_iso_8601": "2020-02-26T01:46:45.154081Z", "url": "https://files.pythonhosted.org/packages/39/dc/5979cd51cf253041e0b88e75d193cd92aa0e01c838803b3eae81cecc8d79/janis%20pipelines-0.9.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "16a9e64761a191d32c905e783d32cca5", "sha256": "db8098722fd352d7353ffa91e4b21e3830756b340fe5954e98cadf9a02b63145" }, "downloads": -1, "filename": "janis_pipelines-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "16a9e64761a191d32c905e783d32cca5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24120, "upload_time": "2020-03-23T01:20:16", "upload_time_iso_8601": "2020-03-23T01:20:16.405992Z", "url": "https://files.pythonhosted.org/packages/fc/02/6f25ad2c8032724e456edadda9928fd5df0b3dd2270dff878d42698479f1/janis_pipelines-0.9.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "277f54cd1f606919c27ca50c82e60fa5", "sha256": "a3be2e9681697f33d78fd783675f62ea1bbf2e6fce84644770a370279a5fea22" }, "downloads": -1, "filename": "janis pipelines-0.9.4.tar.gz", "has_sig": false, "md5_digest": "277f54cd1f606919c27ca50c82e60fa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12609, "upload_time": "2020-03-23T01:20:17", "upload_time_iso_8601": "2020-03-23T01:20:17.923363Z", "url": "https://files.pythonhosted.org/packages/cd/38/e34914584a3491b5981305304bd5a84a724659fa8f9e5d5611117ec73b79/janis%20pipelines-0.9.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "c2142594c060a985651df543533f3988", "sha256": "ed643f79505348aa33fe94a14a25f2c6da5d66ef19f39c0ea2e4fbab46339fde" }, "downloads": -1, "filename": "janis_pipelines-0.9.5-py3-none-any.whl", "has_sig": false, "md5_digest": "c2142594c060a985651df543533f3988", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24119, "upload_time": "2020-04-22T09:21:16", "upload_time_iso_8601": "2020-04-22T09:21:16.247953Z", "url": "https://files.pythonhosted.org/packages/5a/59/254e1dea1261c71bd56add21532da7f957580ece950fc48bb5929ee04736/janis_pipelines-0.9.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4b8cbb376b45a66d7d99e10a74960cc", "sha256": "c4a9628e079c98a17fc5580df44642ef02a3606547c98dcc36f141ddb69fe2de" }, "downloads": -1, "filename": "janis pipelines-0.9.5.tar.gz", "has_sig": false, "md5_digest": "c4b8cbb376b45a66d7d99e10a74960cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12607, "upload_time": "2020-04-22T09:21:17", "upload_time_iso_8601": "2020-04-22T09:21:17.321509Z", "url": "https://files.pythonhosted.org/packages/7c/f8/60e6d2ca2c62eef8c18062c339526f9698d2589acf62cf01c0a2f4e7d8aa/janis%20pipelines-0.9.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "3e40c5e1d1466d7a97adbbb4c3b01b2b", "sha256": "f94c5ee0022854cd397d4f2375b214021edbfc70693b0976b008947d78dfe98c" }, "downloads": -1, "filename": "janis_pipelines-0.9.6-py3-none-any.whl", "has_sig": false, "md5_digest": "3e40c5e1d1466d7a97adbbb4c3b01b2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26912, "upload_time": "2020-05-22T05:39:17", "upload_time_iso_8601": "2020-05-22T05:39:17.922160Z", "url": "https://files.pythonhosted.org/packages/1c/ba/b2aed481560402a65831943f54b747afb6d9b595f76bd5341a75387db9c1/janis_pipelines-0.9.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd7453879acb2da1b0be49f13a510b0b", "sha256": "77a1ae61414105ddb1949de86f528f00e604ba273e9694d48f82097142480edc" }, "downloads": -1, "filename": "janis pipelines-0.9.6.tar.gz", "has_sig": false, "md5_digest": "fd7453879acb2da1b0be49f13a510b0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14837, "upload_time": "2020-05-22T05:39:18", "upload_time_iso_8601": "2020-05-22T05:39:18.998158Z", "url": "https://files.pythonhosted.org/packages/52/04/626fb6f37ac578acf71dbb509b9b678acf2b78cc65ef57ab4a360397ea35/janis%20pipelines-0.9.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "5c718cab74a7bf49f27dca544fae9f20", "sha256": "e619d72ff6e9a89e9c27bc5ed380aefa902ee1a813ee2ad2972b2e9229c38aad" }, "downloads": -1, "filename": "janis_pipelines-0.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "5c718cab74a7bf49f27dca544fae9f20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27035, "upload_time": "2020-06-19T03:10:55", "upload_time_iso_8601": "2020-06-19T03:10:55.577498Z", "url": "https://files.pythonhosted.org/packages/51/e7/c63029de8a523763e978fb7716903cf5f52287268db9c38c760f103548f9/janis_pipelines-0.9.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "223b6baf80a5ce7b5bbde2c3fb47143a", "sha256": "b3fd5f5fa01d185f2f00b65c680def67a0c8d9d2aba477307027fdec466086f9" }, "downloads": -1, "filename": "janis pipelines-0.9.7.tar.gz", "has_sig": false, "md5_digest": "223b6baf80a5ce7b5bbde2c3fb47143a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14921, "upload_time": "2020-06-19T03:10:56", "upload_time_iso_8601": "2020-06-19T03:10:56.767982Z", "url": "https://files.pythonhosted.org/packages/04/e5/b267e5536b658ace18804c92a108a6f08df716b1a4f1bd4a49d4b1bec9db/janis%20pipelines-0.9.7.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2b00ffd37b2258391a4ea85b34740c91", "sha256": "5fd31dcad87ef6d3ca6088a3591d9bc63a015625b10730e0a600079644ff032e" }, "downloads": -1, "filename": "janis_pipelines-0.11.6-py3-none-any.whl", "has_sig": false, "md5_digest": "2b00ffd37b2258391a4ea85b34740c91", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28575, "upload_time": "2021-11-19T11:10:44", "upload_time_iso_8601": "2021-11-19T11:10:44.116997Z", "url": "https://files.pythonhosted.org/packages/b9/dd/cf0c63551644fd5da90f4f37ab9d92c525336d0e3bd41ad882039270f1cc/janis_pipelines-0.11.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e54b7d138a89f3b827a5717ae29faaef", "sha256": "f63350b1e0807fcaf730f6c2fc035901bfc128a5ca058fdd0455a71a016ebd6f" }, "downloads": -1, "filename": "janis pipelines-0.11.6.tar.gz", "has_sig": false, "md5_digest": "e54b7d138a89f3b827a5717ae29faaef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27365, "upload_time": "2021-11-19T11:10:45", "upload_time_iso_8601": "2021-11-19T11:10:45.460582Z", "url": "https://files.pythonhosted.org/packages/22/84/ef031f3394faf2e2a2405740d896adc139153f5386b76b5903a46a0bdd9b/janis%20pipelines-0.11.6.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }