{ "info": { "author": "Favero Francesco", "author_email": "favero.francesco@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Healthcare Industry", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: C", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: System :: Distributed Computing", "Topic :: Utilities" ], "description": "BIO pype\n========\n\nSimple and slim python framework to build, organize and standardize\nbioinformatics analyses.\n\n The system is built around the python\n `argparse `__\n module, to provide command line interface to run the configured\n analyses. The framework is heavily customizable and provides basic\n method to access to `Environment\n Modules `__ and implements various\n queuing systems such as\n `moab/torque `__.\n\nInstall\n-------\n\n**From Pypi**\n\n::\n\n pip install bio_pype\n\n**The development version from git**\n\n::\n\n git clone https://bitbucket.org/ffavero/bio_pype\n cd bio_pype\n python setup.py test\n python setup.py install\n\n**Installation with virtualenv in the `computerome\nHPC `__ system:**\n\n(Or in any system where virtualenv is not installed at system level)\n\n::\n\n mkdir ~/venv_files\n\n # Download virtualenv files (not installed in the python version used in computerome)\n curl -L -o ~/venv_files/setuptools-20.2.2-py2.py3-none-any.whl https://github.com/pypa/virtualenv/raw/develop/virtualenv_support/setuptools-20.2.2-py2.py3-none-any.whl\n curl -L -o ~/venv_files/pip-8.1.0-py2.py3-none-any.whl https://github.com/pypa/virtualenv/raw/develop/virtualenv_support/pip-8.1.0-py2.py3-none-any.whl\n curl -L -o ~/venv_files/virtualenv.py https://github.com/pypa/virtualenv/raw/develop/virtualenv.py\n\n # Create a virtual environment\n python ~/venv_files/virtualenv.py --extra-search-dir=~/venv_files ~/venv_bio_pype\n # Activate the environment\n source ~/venv_bio_pype/bin/activate\n\n # Install bio_pype as instructed above\n\n # The pype command line utility will be available upon the \"activation\" of the environment or by specifying the full path, in this case:\n\n # ~/venv_bio_pype/bin/pype\n\n # To deactivate the virtual env:\n deactivate\n\nBasic usage\n-----------\n\nAccess first level modules:\n\n::\n\n $ pype\n usage: pype [-p PROFILE] {pipelines,profiles,repos,snippets} ...\n\n Slim and simple framework to ease the managements of data, tools and pipelines in the computerome HPC\n\n positional arguments:\n pipelines Workflows built by assembling pipelines and snippets\n profiles Set of databases softwares and meta information\n repos Management of pype modules\n snippets Single tasks implementations\n\n optional arguments:\n -p PROFILE, --profile PROFILE\n Select the profile. This will define things like\n databases, reference genomes paths,specific version of\n programs to loads and other similar configurations.\n Default: default\n\n This is version 0.9.0 - Francesco Favero - 15 May 2017\n\nInstall Repos:\n--------------\n\nBy default the repository of modules is empty.\n\nTo install a desired repository, list the available repository:\n\n::\n\n $ pype repos list -a\n\nInstall a selected repository:\n\n::\n\n $ pype repos install -f sequenza\n\nMore Details\n------------\n\nIt is possible to pass local modules for snippets and profiles via\nenvironment variables, An example with the package test modules:\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets pype snippets\n error: too few arguments\n usage: pype snippets {reverse_fa,complement_fa,lower_fa,test} ...\n\n positional arguments:\n {reverse_fa,complement_fa,lower_fa,test}\n reverse_fa reverse a fasta sequence\n complement_fa lower case a fasta sequence\n lower_fa lower case a fasta sequence\n test test_snippets \n\n**Snippets**\n\nThe snippets are python modules that perform a given task:\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets pype snippets test\n error: argument --test is required\n usage: pype snippets test --test TEST [-o OPT]\n\n optional arguments:\n --test TEST Test metavar\n -o OPT test option\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets pype snippets test --test World\n Hello World\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets pype snippets test --test mate -o Cheers\n Cheers mate\n\n**Pipeline:**\n\nThe pipelines are yaml files tbat group any snippets or other pipelines,\nwith the desired dependency order.\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets PYPE_PIPELINES=test/data/pipelines pype pipelines\n error: too few arguments\n usage: pype pipelines [--queue {echo,none}] {rev_compl_low_fa} ...\n\n positional arguments:\n {rev_compl_low_fa}\n rev_compl_low_fa Reverse Complement Lower case a fasta\n\n optional arguments:\n --queue {msub,echo,none}\n Select the queuing system to run the pipeline\n --log LOG Path used to write the pipeline logs. Default working\n directory.\n\nThe arguments for a pipeline are parsed on the fly from a YAML file,\nwhich defines the tools and the flow of the execution:\n\n::\n\n info:\n description: Reverse Complement Lower case a fasta\n date: 06/07/2016\n items:\n - name: lower_fa\n type: snippet\n arguments:\n -i: '%(complement_fa)s'\n -o: '%(output)s'\n dependencies:\n items:\n - name: complement_fa\n type: snippet\n arguments:\n -i: '%(reverse_fa)s'\n -o: '%(complement_fa)s'\n dependencies:\n items:\n - name: reverse_fa\n type: snippet\n arguments:\n -i: '%(input_fa)s'\n -o: '%(reverse_fa)s'\n\nresulting argparse interface:\n\n::\n\n $ PYPE_SNIPPETS=test/data/snippets PYPE_PIPELINES=test/data/pipelines pype pipelines rev_compl_low_fa\n error: argument --complement_fa is required\n usage: pype pipelines rev_compl_low_fa --complement_fa COMPLEMENT_FA --output\n OUTPUT --reverse_fa REVERSE_FA\n --input_fa INPUT_FA\n\n optional arguments:\n --complement_fa COMPLEMENT_FA\n complement_fa type: str\n --output OUTPUT output type: str\n --reverse_fa REVERSE_FA\n reverse_fa type: str\n --input_fa INPUT_FA input_fa type: str\n\nMore details on `read the docs `__\n(slowly documenting the various features/changes).\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/bio-pype/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://bio-pype.readthedocs.io", "keywords": "bioinformatics", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "bio-pype", "package_url": "https://pypi.org/project/bio-pype/", "platform": "", "project_url": "https://pypi.org/project/bio-pype/", "project_urls": { "Homepage": "http://bio-pype.readthedocs.io" }, "release_url": "https://pypi.org/project/bio-pype/1.0.7/", "requires_dist": [ "PyYAML", "psutil" ], "requires_python": "", "summary": "Management and development framework for bioinformatics pipelines", "version": "1.0.7" }, "last_serial": 5770907, "releases": { "0.9.9": [ { "comment_text": "", "digests": { "md5": "a266502bec89f605b34fb4192bfb3d32", "sha256": "67cec1d0c3be7f020621e617a17c7f441694f60bc19b0655f397568c5d926043" }, "downloads": -1, "filename": "bio_pype-0.9.9.tar.gz", "has_sig": false, "md5_digest": "a266502bec89f605b34fb4192bfb3d32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19299, "upload_time": "2017-05-17T19:27:57", "url": "https://files.pythonhosted.org/packages/36/7b/2533389749db44a6447be0d6dd2782b86e7ae0cd52b053f96329dd7da070/bio_pype-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ad1dbfa885a6d64c0535372c6049c249", "sha256": "d877698b1e47a13064ef3b66af7f5a8f786dd3e85c906dc502b5a81f470ff28c" }, "downloads": -1, "filename": "bio_pype-1.0.0.tar.gz", "has_sig": false, "md5_digest": "ad1dbfa885a6d64c0535372c6049c249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19696, "upload_time": "2018-07-19T09:39:49", "url": "https://files.pythonhosted.org/packages/d6/47/4a4b1e6a2b2b74952faed1de9302d380c054e8917cc68439d7d591c04022/bio_pype-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "eb95c6d7f85ac23d67c83ff3eeb753f5", "sha256": "fcfee4c297533754506135f3ca3cd9bba878776e08495f016423ba9c3d484ba2" }, "downloads": -1, "filename": "bio_pype-1.0.1.tar.gz", "has_sig": false, "md5_digest": "eb95c6d7f85ac23d67c83ff3eeb753f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20634, "upload_time": "2018-07-23T12:31:45", "url": "https://files.pythonhosted.org/packages/57/e8/be8ab829f711e87cb931b63e627aa07d3614d42e577382b91053badd9e98/bio_pype-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "85c852532806be74477c585c2a3ff73f", "sha256": "8e75af4e441eb6d5e82b556cd29f89f496fd4d4db7c3d73ed8a6fc15fd03e08a" }, "downloads": -1, "filename": "bio_pype-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "85c852532806be74477c585c2a3ff73f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 25938, "upload_time": "2019-08-20T11:25:31", "url": "https://files.pythonhosted.org/packages/ff/7d/75320d3a9ce9cc0376194b5ee546a9580834ee6d8f1a56d21154165628f5/bio_pype-1.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d65c47ed0f8156c564b8228b5c62637", "sha256": "39be0f73eed974ed60c7b4510bb14ae9ae424a9eafae8a3cdc460e2283c91654" }, "downloads": -1, "filename": "bio_pype-1.0.2.tar.gz", "has_sig": false, "md5_digest": "9d65c47ed0f8156c564b8228b5c62637", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20636, "upload_time": "2019-08-20T11:25:32", "url": "https://files.pythonhosted.org/packages/39/de/b93057ab18e1cb4e696808e4fc00b0e2bbcf30d5d7eabfe6cf3aafd84b49/bio_pype-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "d37a3bdb81a0cace4c68722f296b846e", "sha256": "1290fcb6c773786b3c490ee06db1a71576568991e652eb47065b0d9cd6233856" }, "downloads": -1, "filename": "bio_pype-1.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "d37a3bdb81a0cace4c68722f296b846e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26337, "upload_time": "2019-08-20T12:13:53", "url": "https://files.pythonhosted.org/packages/94/0f/1087c4aabdb58ef5362e2ec14106ad3a166d4ba069b2c494ea0dff818e2a/bio_pype-1.0.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62bf5a542a867231889ead5bea63bec4", "sha256": "a2f9bff2f746f0575ffcbe24ae838f45f73bb905368e93e0ed35b7e2a30669e1" }, "downloads": -1, "filename": "bio_pype-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "62bf5a542a867231889ead5bea63bec4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26337, "upload_time": "2019-08-20T12:13:54", "url": "https://files.pythonhosted.org/packages/fa/7d/0a665109dcb95a188d2f8f29283958784eb827427ab8a5fdba4242f522b3/bio_pype-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c936c1ff541f71d2f91924bad0289272", "sha256": "e4c783c06096a4462094fbc83603adedc926efc851d648ffbbccff4b81fcb81d" }, "downloads": -1, "filename": "bio_pype-1.0.3.tar.gz", "has_sig": false, "md5_digest": "c936c1ff541f71d2f91924bad0289272", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19623, "upload_time": "2019-08-20T12:13:56", "url": "https://files.pythonhosted.org/packages/22/16/0c654dd53bc3e54e60937672efe5d2a25d932c3278c5682e5032cb9f3ac8/bio_pype-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "36c25d450cb93365710f311cd6ccd809", "sha256": "c8463fe28cf7e6c41009554fd8497afab4eccaab1388cbdcc11a19553927108a" }, "downloads": -1, "filename": "bio_pype-1.0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "36c25d450cb93365710f311cd6ccd809", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26345, "upload_time": "2019-08-22T11:52:08", "url": "https://files.pythonhosted.org/packages/ff/1f/1f97152b98f4cbbbd49b509998bf67a3c7ebbf834a017c12b3e745d5fe23/bio_pype-1.0.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0015898eb47b6467ed87ae9a8fe254f2", "sha256": "bfd4381c89e350ed921d2627b7e5c5dfcece936298292812fec2902f9b9b9520" }, "downloads": -1, "filename": "bio_pype-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0015898eb47b6467ed87ae9a8fe254f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26345, "upload_time": "2019-08-22T11:52:10", "url": "https://files.pythonhosted.org/packages/ec/ef/c11d3d27353def975274d30a43a014c9a05a07f501531223beaf342c6e44/bio_pype-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27e50b94aa4719585201bd5f46d98de8", "sha256": "fe0c7cc46504441e32e0d89d7986c69f042484f25c741ac0c17a4dcbbc592d1d" }, "downloads": -1, "filename": "bio_pype-1.0.4.tar.gz", "has_sig": false, "md5_digest": "27e50b94aa4719585201bd5f46d98de8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19428, "upload_time": "2019-08-22T11:52:12", "url": "https://files.pythonhosted.org/packages/0f/ba/319b34db13462efbec1a3a5a9bbd988f0a757d4d6012a20ae0d433132d69/bio_pype-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "165a637c47b1fd4c16aecc998bceb882", "sha256": "62c9164b783d0137a5771f8039fc1403bcbf52a8dbefa26eb9880be022bbc94c" }, "downloads": -1, "filename": "bio_pype-1.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "165a637c47b1fd4c16aecc998bceb882", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26419, "upload_time": "2019-08-28T13:39:48", "url": "https://files.pythonhosted.org/packages/82/08/348f962a544f3eee91f6f0fd79ff34002e7e5644548caa6935bbdb6df0be/bio_pype-1.0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67b4a032ea4484d4202c9c5fc4cc7a23", "sha256": "46215cde00c03762e5a18dfd55e06cc0184da44037e3e1a5e4e77e84dfd6bcd4" }, "downloads": -1, "filename": "bio_pype-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "67b4a032ea4484d4202c9c5fc4cc7a23", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26418, "upload_time": "2019-08-28T13:39:50", "url": "https://files.pythonhosted.org/packages/07/a9/5e97e8f8b576631bbf8208ee4544180c91a38f0e03a1030bad038ae3fbf3/bio_pype-1.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "705abf95709f0c76979af36a5942c766", "sha256": "7d4e32905ce472b8fdb88c905758533dd774844e08f9df412f1d0408533f89bb" }, "downloads": -1, "filename": "bio_pype-1.0.5.tar.gz", "has_sig": false, "md5_digest": "705abf95709f0c76979af36a5942c766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19511, "upload_time": "2019-08-28T13:39:52", "url": "https://files.pythonhosted.org/packages/0e/be/6a6e18aebe222e0428ab0ff4ed2f2bcb34972d36ec63a8ebda4e3bc5b4f7/bio_pype-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "93eeade3097f9348c2d1c069f27d39bb", "sha256": "1e4fefc95187ee5161ceabd2747ba4bbc46b482e55e1b6969c0e8ed9c9164c73" }, "downloads": -1, "filename": "bio_pype-1.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "93eeade3097f9348c2d1c069f27d39bb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26482, "upload_time": "2019-09-01T20:47:44", "url": "https://files.pythonhosted.org/packages/db/c0/ee76b85fb77db84f2895a42ea8edb27d125baeae7a50c0cf457bca602f17/bio_pype-1.0.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "599b8c3139f1e06cf0ebaf51cc979fd5", "sha256": "423118a4d9b477b89167dd17c99ba8bc0599bdf08493fa30e6375eca03b5495c" }, "downloads": -1, "filename": "bio_pype-1.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "599b8c3139f1e06cf0ebaf51cc979fd5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26482, "upload_time": "2019-09-01T20:47:46", "url": "https://files.pythonhosted.org/packages/83/b6/c9de54bbef27825f604d40636a773ccb03fd4f6d7dd828633145f08711f3/bio_pype-1.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ef6995a1d2c55a2ae76db60d2f6adfd", "sha256": "8e6826e12dc39502ab1561751809215076fb32433a11317320ed7dfb3cc333a9" }, "downloads": -1, "filename": "bio_pype-1.0.6.tar.gz", "has_sig": false, "md5_digest": "4ef6995a1d2c55a2ae76db60d2f6adfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19547, "upload_time": "2019-09-01T20:47:47", "url": "https://files.pythonhosted.org/packages/45/66/ab8843033fc350dfa7cc2f7b9c148653926f501cf94c96d87a5090297b7a/bio_pype-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "825456d3cbbed42721dc7a12a5acd659", "sha256": "e761b699d2b11cca891358eedc03f826e58b72ab56514a5788e299bd0ae90977" }, "downloads": -1, "filename": "bio_pype-1.0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "825456d3cbbed42721dc7a12a5acd659", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26631, "upload_time": "2019-09-02T13:39:35", "url": "https://files.pythonhosted.org/packages/f5/5e/d29c63dbddefdd51bc5eba1b85404c6110d0f90faffcfcb34f72764710b1/bio_pype-1.0.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c5ebdd295fe419152514fe690c455d6", "sha256": "5953254d81d34d9becd822f1fac3c5d670253a7b5f79cf645a92b891a1a3b3e6" }, "downloads": -1, "filename": "bio_pype-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "2c5ebdd295fe419152514fe690c455d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26632, "upload_time": "2019-09-02T13:39:37", "url": "https://files.pythonhosted.org/packages/26/47/312ffea373a036b829c41b3869b54f57b58913553e259e49d9aa3fde286c/bio_pype-1.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5f6f3a44cb4d67c74b6be41e9d72bf2", "sha256": "3cda015b3f1d240e682a72544434e7270787941d92424ec8a6256d84ea7a17e4" }, "downloads": -1, "filename": "bio_pype-1.0.7.tar.gz", "has_sig": false, "md5_digest": "e5f6f3a44cb4d67c74b6be41e9d72bf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21343, "upload_time": "2019-09-02T13:39:39", "url": "https://files.pythonhosted.org/packages/b7/1c/080d0d19a397d271609f6d39174c25d8f8c03643a88899bea96d6d6d152f/bio_pype-1.0.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "825456d3cbbed42721dc7a12a5acd659", "sha256": "e761b699d2b11cca891358eedc03f826e58b72ab56514a5788e299bd0ae90977" }, "downloads": -1, "filename": "bio_pype-1.0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "825456d3cbbed42721dc7a12a5acd659", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26631, "upload_time": "2019-09-02T13:39:35", "url": "https://files.pythonhosted.org/packages/f5/5e/d29c63dbddefdd51bc5eba1b85404c6110d0f90faffcfcb34f72764710b1/bio_pype-1.0.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c5ebdd295fe419152514fe690c455d6", "sha256": "5953254d81d34d9becd822f1fac3c5d670253a7b5f79cf645a92b891a1a3b3e6" }, "downloads": -1, "filename": "bio_pype-1.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "2c5ebdd295fe419152514fe690c455d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26632, "upload_time": "2019-09-02T13:39:37", "url": "https://files.pythonhosted.org/packages/26/47/312ffea373a036b829c41b3869b54f57b58913553e259e49d9aa3fde286c/bio_pype-1.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5f6f3a44cb4d67c74b6be41e9d72bf2", "sha256": "3cda015b3f1d240e682a72544434e7270787941d92424ec8a6256d84ea7a17e4" }, "downloads": -1, "filename": "bio_pype-1.0.7.tar.gz", "has_sig": false, "md5_digest": "e5f6f3a44cb4d67c74b6be41e9d72bf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21343, "upload_time": "2019-09-02T13:39:39", "url": "https://files.pythonhosted.org/packages/b7/1c/080d0d19a397d271609f6d39174c25d8f8c03643a88899bea96d6d6d152f/bio_pype-1.0.7.tar.gz" } ] }