{ "info": { "author": "Yifan Peng", "author_email": "yifan.peng@nih.gov", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Text Processing :: Markup :: XML" ], "description": "`bioc` - BioC data structures and encoder/decoder for Python\n=============================================================\n\n.. image:: https://img.shields.io/travis/yfpeng/bioc.svg\n :alt: Build status\n :target: https://travis-ci.org/yfpeng/bioc\n\n.. image:: https://github.com/yfpeng/bioc/workflows/bioc/badge.svg\n :alt: Build status\n :target: https://github.com/yfpeng/bioc/\n\n.. image:: https://img.shields.io/pypi/v/bioc.svg\n :target: https://pypi.python.org/pypi/bioc\n :alt: Latest version on PyPI\n\n.. image:: https://img.shields.io/pypi/dm/bioc.svg\n :alt: Downloads\n :target: https://pypi.python.org/pypi/bioc\n \n.. image:: https://coveralls.io/repos/github/yfpeng/bioc/badge.svg?branch=master\n :alt: Coverage\n :target: https://pypi.python.org/pypi/bioc\n \n.. image:: https://requires.io/github/yfpeng/bioc/requirements.svg?branch=master\n :target: https://requires.io/github/yfpeng/bioc/requirements/?branch=master\n :alt: Requirements Status\n\n.. image:: https://img.shields.io/pypi/l/bioc.svg\n :alt: License\n :target: https://opensource.org/licenses/BSD-3-Clause\n\n\n`BioC XML / JSON format `_ can be used to share\ntext documents and annotations.\n\n``bioc`` exposes an API familiar to users of the standard library\n``marshal`` and ``pickle`` modules.\n\nDevelopment of ``bioc`` happens on GitHub:\nhttps://github.com/yfpeng/bioc\n\nGetting started\n---------------\n\nInstalling ``bioc``\n\n.. code:: bash\n\n $ pip install bioc\n\nXML\n~~~\n\nEncoding the BioC collection object ``collection``:\n\n.. code:: python\n\n import bioc\n # Serialize ``collection`` to a BioC formatted ``str``.\n bioc.dumps(collection)\n\n # Serialize ``collection`` as a BioC formatted stream to ``fp``.\n with open(filename, 'w') as fp\n bioc.dump(collection, fp)\n\nCompact encoding:\n\n.. code:: python\n\n import bioc\n bioc.dumps(collection, pretty_print=False)\n\nIncremental BioC serialisation:\n\n.. code:: python\n\n import bioc\n with bioc.BioCXMLDocumentWriter(filename) as writer:\n writer.write_collection_info(collection)\n for document in collection.documents:\n writer.write_document(document)\n\nDecoding the BioC XML file:\n\n.. code:: python\n\n import bioc\n # Deserialize ``s`` to a BioC collection object.\n collection = bioc.loads(s)\n\n # Deserialize ``fp`` to a BioC collection object.\n with open(filename, 'r') as fp:\n collection = bioc.load(fp)\n\nIncrementally decoding the BioC XML file:\n\n.. code:: python\n\n import bioc\n with bioc.BioCXMLDocumentReader(filename) as reader:\n collection_info = reader.get_collection_info()\n for document in reader:\n # process document\n ...\n\n``get_collection_info`` can be called after the construction of the ``BioCXMLDocumentReader`` anytime.\n\nTogether with Python coroutines, this can be used to generate BioC XML in an asynchronous, non-blocking fashion.\n\n.. code:: python\n\n import bioc\n with bioc.BioCXMLDocumentReader(source) as reader, \\\n bioc.BioCXMLDocumentWriter(dest) as writer:\n collection_info = reader.get_collection_info()\n writer.write_collection_info(collection_info)\n for document in reader:\n # modify the document\n ...\n writer.write_document(document)\n\nJson\n~~~~\n\nEncoding the BioC collection object ``collection``:\n\n.. code:: python\n\n import biocjson\n # Serialize ``collection`` to a BioC Json formatted ``str``.\n biocjson.dumps(collection, indent=2)\n\n # Serialize ``collection`` as a BioC Json formatted stream to ``fp``.\n with open(filename, 'w') as fp\n biocjson.dump(collection, fp, indent=2)\n\nCompact encoding:\n\n.. code:: python\n\n import biocjson\n biocjson.dumps(collection)\n\nDecoding the BioC Json file:\n\n.. code:: python\n\n import biocjson\n # Deserialize ``s`` to a BioC collection object.\n collection = biocjson.loads(s)\n\n # Deserialize ``fp`` to a BioC collection object.\n with open(filename, 'r') as fp:\n collection = biocjson.load(fp)\n\nJson Lines\n~~~~~~~~~~\n\nIncrementally encoding the BioC structure:\n\n.. code:: python\n\n from bioc.biocjson import BioCJsonIterWriter\n with BioCJsonIterWriter(filename, level=bioc.PASSAGE) as writer:\n for doc in collection.documents:\n for passage in doc.passages:\n writer.write(passage)\n\nor\n\n.. code:: python\n\n from bioc.biocjson import toJSON\n import jsonlines\n with jsonlines.open(filename, 'w') as writer:\n for doc in collection.documents:\n for passage in doc.passages:\n writer.write(toJSON(passage))\n\nIncrementally decoding the BioC Json lines file:\n\n.. code:: python\n\n from bioc.biocjson import BioCJsonIterReader\n with BioCJsonIterReader(filename, level=bioc.PASSAGE) as reader:\n for passage in reader:\n # process passage\n ...\n\nor\n\n.. code:: python\n\n from bioc.biocjson import fromJSON\n import jsonlines\n with jsonlines.open(filename) as reader:\n for obj in reader:\n passage = fromJSON(obj, level=bioc.PASSAGE)\n ...\n\nDevelopers\n----------\n\n- Yifan Peng (yifan.peng@nih.gov)\n\nAcknowledgment\n--------------\n\n- Hernani Marques (https://github.com/2mh/PyBioC)\n\nWebpage\n-------\n\nThe official BioC webpage is available with all up-to-date instructions,\ncode, and corpora in the BioC format, and other research on, based on\nand related to BioC.\n\n- http://www.ncbi.nlm.nih.gov/CBBresearch/Dogan/BioC/\n- http://bioc.sourceforge.net/\n\n\nReference\n---------\n\nIf you use bioc in your research, please cite the following paper:\n\n- Peng,Y., Tudor,C., Torii,M., Wu,C.H., Vijay-Shanker,K. (2014) iSimp\n in BioC standard format: Enhancing the interoperability of a sentence\n simplification system. Database: The Journal of Biological Databases\n and Curation.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yfpeng/bioc", "keywords": "bioc", "license": "BSD 3-Clause License", "maintainer": "", "maintainer_email": "", "name": "bioc", "package_url": "https://pypi.org/project/bioc/", "platform": "", "project_url": "https://pypi.org/project/bioc/", "project_urls": { "Homepage": "https://github.com/yfpeng/bioc" }, "release_url": "https://pypi.org/project/bioc/1.3.2/", "requires_dist": null, "requires_python": ">=3.6", "summary": "BioC data structures and encoder/decoder for Python", "version": "1.3.2" }, "last_serial": 5838968, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "d1f963da8c6a8b8ba888521395fd4e6b", "sha256": "c149ff1ea57115550a49bf0749cae9a5fdcdbb57ba834a03a5e0eeb5b3849a96" }, "downloads": -1, "filename": "bioc-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1f963da8c6a8b8ba888521395fd4e6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13695, "upload_time": "2017-05-09T03:13:59", "url": "https://files.pythonhosted.org/packages/e0/21/3137c53520894b9d2ab04f267afcdaf6b7dd45ee38e724fa0585994eb6e9/bioc-1.0-py2.py3-none-any.whl" } ], "1.0.dev22": [ { "comment_text": "", "digests": { "md5": "612149b9e9de309d86f88c38d581fb1b", "sha256": "fe71d20d8fba2d5bf3d6107cc12184fdc99e39ac2060ec5ea4f4de7f14f2be5f" }, "downloads": -1, "filename": "bioc-1.0.dev22-py2.7.egg", "has_sig": false, "md5_digest": "612149b9e9de309d86f88c38d581fb1b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 2528, "upload_time": "2017-01-02T03:46:01", "url": "https://files.pythonhosted.org/packages/11/4d/0e357d942757065c619824fc3026f75143bf5b0296519e79f05bfa97dd3c/bioc-1.0.dev22-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "532c9670b907c8bc253dd36e32ebc555", "sha256": "74ec68abda518d6d8b1614d2ab4e96b69fc54de3369576015008a4172b8949d8" }, "downloads": -1, "filename": "bioc-1.0.dev22.tar.gz", "has_sig": false, "md5_digest": "532c9670b907c8bc253dd36e32ebc555", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11757, "upload_time": "2016-12-19T16:57:22", "url": "https://files.pythonhosted.org/packages/bc/4b/9a97f16faeddc10cf879dabba5be5ed4dd48146715632386eaeeffebbead/bioc-1.0.dev22.tar.gz" } ], "1.0.dev23": [ { "comment_text": "", "digests": { "md5": "42f49a90a913b5d47a31493640e0389f", "sha256": "ba4961b9ed093a026c87f038c2a911f659b16b476b9bfc588627e5251e72a461" }, "downloads": -1, "filename": "bioc-1.0.dev23.tar.gz", "has_sig": false, "md5_digest": "42f49a90a913b5d47a31493640e0389f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12920, "upload_time": "2016-12-29T18:50:36", "url": "https://files.pythonhosted.org/packages/c4/ed/a4dba30e2143ec6b519a2da7939b7bf1dfc368d27c36746fed1d4638fb71/bioc-1.0.dev23.tar.gz" } ], "1.0.dev24": [ { "comment_text": "", "digests": { "md5": "f48f0abdeabb6c86900b8e83b6b21b00", "sha256": "737c0d2fb6ef0fbb78cf538f122a7fba4743bff56e18914a1e3b0986a9974a4d" }, "downloads": -1, "filename": "bioc-1.0.dev24.tar.gz", "has_sig": false, "md5_digest": "f48f0abdeabb6c86900b8e83b6b21b00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12896, "upload_time": "2016-12-29T18:57:41", "url": "https://files.pythonhosted.org/packages/1d/f3/23f31f4fd00c158df50b8349266301719f2268eb19cc3846aac7cf64f361/bioc-1.0.dev24.tar.gz" } ], "1.0.dev25": [ { "comment_text": "", "digests": { "md5": "fd21f1f915303fa93ac469d5d55ca6a1", "sha256": "4267ea04e0c998e0d797ec81d03ae265f0bff95a0c9ed2c371bcbc92b522d507" }, "downloads": -1, "filename": "bioc-1.0.dev25.tar.gz", "has_sig": false, "md5_digest": "fd21f1f915303fa93ac469d5d55ca6a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12907, "upload_time": "2016-12-30T18:36:25", "url": "https://files.pythonhosted.org/packages/30/28/a8a573ca2a9608d090b7afddedddaddf1dbfbb03963f4f6364951a5a90d6/bioc-1.0.dev25.tar.gz" } ], "1.0.dev26": [], "1.0.dev27": [ { "comment_text": "", "digests": { "md5": "0ef0ac9d612387cc0b4cc2fff490d7e5", "sha256": "2575989c0aa073bf164f22bbe6f1c7d5938c8958edf3cb62a501c0bb5bfdd945" }, "downloads": -1, "filename": "bioc-1.0.dev27.tar.gz", "has_sig": false, "md5_digest": "0ef0ac9d612387cc0b4cc2fff490d7e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12951, "upload_time": "2017-01-02T04:25:25", "url": "https://files.pythonhosted.org/packages/05/82/a5ff7d345d172f08da6693f6562e27dd42b3bab34bd105f29783d253f2aa/bioc-1.0.dev27.tar.gz" } ], "1.0.dev28": [ { "comment_text": "", "digests": { "md5": "b84baf902600795645f191378e8894cc", "sha256": "5430b2aeed88b64bf8cc5c8d1b6386f96d8bcc7a867a15532919f5da5ae7fa9e" }, "downloads": -1, "filename": "bioc-1.0.dev28-py2-none-any.whl", "has_sig": false, "md5_digest": "b84baf902600795645f191378e8894cc", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 12993, "upload_time": "2017-01-02T04:58:18", "url": "https://files.pythonhosted.org/packages/d7/e7/3bc1ea23c39446effaac3c5391dcca7cf63c3fa37437fb7fd87984a9f43b/bioc-1.0.dev28-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0df5eda875548fa9e556e5e1727a6981", "sha256": "98e454f691b8c017dc72555d6f59b4ddf378c5261755ce18877e0f9b281a9f25" }, "downloads": -1, "filename": "bioc-1.0.dev28.tar.gz", "has_sig": false, "md5_digest": "0df5eda875548fa9e556e5e1727a6981", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9967, "upload_time": "2017-01-02T04:54:41", "url": "https://files.pythonhosted.org/packages/9c/97/d4471b4b3101084b0e0e3274403f38eed415396527a89e16263ede538189/bioc-1.0.dev28.tar.gz" } ], "1.0.dev29": [ { "comment_text": "", "digests": { "md5": "72f06c048a704848088e22a3a7347bd1", "sha256": "74e3bae138929f166b572aaea54ee03c25659011cfc5536f3b8ba0c8065aa12e" }, "downloads": -1, "filename": "bioc-1.0.dev29-py2-none-any.whl", "has_sig": false, "md5_digest": "72f06c048a704848088e22a3a7347bd1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 13020, "upload_time": "2017-01-05T14:45:16", "url": "https://files.pythonhosted.org/packages/47/f9/a8b87cfcaf966d5d4eb5a50432d16b18050d2f53980675c3489f168bdcb7/bioc-1.0.dev29-py2-none-any.whl" } ], "1.0.dev30": [ { "comment_text": "", "digests": { "md5": "f124e1b21bb0ce8eb3b4bffec3e0f898", "sha256": "9654e7f5ea243e69999d4fa83c5bc87c8fa4dd7556320fdc911d6b4207e5216b" }, "downloads": -1, "filename": "bioc-1.0.dev30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f124e1b21bb0ce8eb3b4bffec3e0f898", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13029, "upload_time": "2017-03-12T19:09:08", "url": "https://files.pythonhosted.org/packages/bc/35/15130819ce6f87233efa0f6145f7bfbc26736637bd5f28fc37958d483a62/bioc-1.0.dev30-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "016159b50b75e0f91969be016ff31013", "sha256": "0db94c7852521b9bc93b5fb76d5d3419d77119d9c6831fcbe79b9dfd8d590749" }, "downloads": -1, "filename": "bioc-1.0.dev30.tar.gz", "has_sig": false, "md5_digest": "016159b50b75e0f91969be016ff31013", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12888, "upload_time": "2017-03-12T19:11:14", "url": "https://files.pythonhosted.org/packages/c0/dc/93133a0b1032c854a1539221a17db818ab9115ac35e518161c5323a537fa/bioc-1.0.dev30.tar.gz" } ], "1.0.dev31": [ { "comment_text": "", "digests": { "md5": "2adcd6b39e5f89f2de9757be951de67f", "sha256": "3838af44f66efb47fde223680f47def70cec7b87c9f2dfebf9c18562b60fbb6d" }, "downloads": -1, "filename": "bioc-1.0.dev31-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2adcd6b39e5f89f2de9757be951de67f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13178, "upload_time": "2017-03-13T15:13:51", "url": "https://files.pythonhosted.org/packages/41/25/ec9d86f9d898501ffff0fdc52a9e9e706d5a28396e9b696aea8d916486c4/bioc-1.0.dev31-py2.py3-none-any.whl" } ], "1.0.dev32": [ { "comment_text": "", "digests": { "md5": "6dab2ab7d2303fb60da8561cca647ac3", "sha256": "4bc31818bc6816cef6cfde2b8a524ae25bcfb6e1d0353c966206c830f49d6791" }, "downloads": -1, "filename": "bioc-1.0.dev32-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6dab2ab7d2303fb60da8561cca647ac3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13734, "upload_time": "2017-03-13T16:02:06", "url": "https://files.pythonhosted.org/packages/cb/fb/1fc9b618a76e48150ec113dba502ae326e8bb02eb23d085104deab2a6fce/bioc-1.0.dev32-py2.py3-none-any.whl" } ], "1.1.dev1": [ { "comment_text": "", "digests": { "md5": "af2cbb2764810611ec50be0e554c91f0", "sha256": "33e24ee3a59f38357cb019b6edf576afb4c7af09c4b2202424c359f4c0e06241" }, "downloads": -1, "filename": "bioc-1.1.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af2cbb2764810611ec50be0e554c91f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5174, "upload_time": "2017-07-12T01:44:52", "url": "https://files.pythonhosted.org/packages/77/55/17ca2847574e8b00e03d9e5228bf2965e45d335ad4c822855aed9e309793/bioc-1.1.dev1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b907ea0db2311ce0c7dacd14ca2253b", "sha256": "474cc86e85538392333cbb92b5d235e600f5adee2a8f1e94927d7ad27136c2ba" }, "downloads": -1, "filename": "bioc-1.1.dev1.tar.gz", "has_sig": false, "md5_digest": "0b907ea0db2311ce0c7dacd14ca2253b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4355, "upload_time": "2017-07-12T01:44:52", "url": "https://files.pythonhosted.org/packages/8d/7d/b9d57cf898d80c6eff93ab1eeb807a69abde1142607662980dd8f2463213/bioc-1.1.dev1.tar.gz" } ], "1.1.dev2": [ { "comment_text": "", "digests": { "md5": "8413d12ccfcd804b0ccd389bad505c74", "sha256": "be862be4bc05209775e41c48ec4f96a6eb09f62606a9396156572574498d354f" }, "downloads": -1, "filename": "bioc-1.1.dev2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8413d12ccfcd804b0ccd389bad505c74", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16136, "upload_time": "2017-07-12T02:11:44", "url": "https://files.pythonhosted.org/packages/80/39/8aeace903e16f031056bd8426394998a2a928741285bf5fa72ef42caa46a/bioc-1.1.dev2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d17cbd1c0d4f5b5fbe138693b21a6c07", "sha256": "88b6b88c4fec043aab77396c1e0bd96112c58077e5f949baa305aa9c8b5ef084" }, "downloads": -1, "filename": "bioc-1.1.dev2.tar.gz", "has_sig": false, "md5_digest": "d17cbd1c0d4f5b5fbe138693b21a6c07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12494, "upload_time": "2017-07-12T02:11:45", "url": "https://files.pythonhosted.org/packages/cc/bb/e33634771fa57bef1c836ee80504009c62376d3aa0fba24adb11748448f7/bioc-1.1.dev2.tar.gz" } ], "1.1.dev3": [ { "comment_text": "", "digests": { "md5": "9d35e5365a7758bdec78787663d2587a", "sha256": "a2859ef5f86e906d9dbb671412d9951b2300ff688b10ce07c04dfc5e19276a89" }, "downloads": -1, "filename": "bioc-1.1.dev3.tar.gz", "has_sig": false, "md5_digest": "9d35e5365a7758bdec78787663d2587a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15596, "upload_time": "2018-02-10T22:08:27", "url": "https://files.pythonhosted.org/packages/4b/5d/c8a4e7d9e69459ae85767778fae4ff9a435bd5956b9b14d6c397c9b68859/bioc-1.1.dev3.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "b1453c9ffd6dfc70425667efe35f3044", "sha256": "b8d3e7fd0c9d8c79f44547ae371a1e299280f29d1eb44b8d33445793dd954ede" }, "downloads": -1, "filename": "bioc-1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b1453c9ffd6dfc70425667efe35f3044", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16341, "upload_time": "2018-06-22T03:18:34", "url": "https://files.pythonhosted.org/packages/26/13/55fe16f3043adf8de4d624bb1863cfbf38f9bca2bee0cac234173b8ccf06/bioc-1.2-py3-none-any.whl" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "4badbdc434fe234621e318212434682b", "sha256": "11a4232f79a4bc17eb8030c2fdf9a5a9ea134f629ad1125e7bb96aa7a091fb5b" }, "downloads": -1, "filename": "bioc-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4badbdc434fe234621e318212434682b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14888, "upload_time": "2018-06-22T15:27:46", "url": "https://files.pythonhosted.org/packages/b1/74/29cdc7af50fc53e7af7bd4f1f59829707121e3e0f3a88ca232dd9c217bd9/bioc-1.2.1-py3-none-any.whl" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "86af5108d4316dba2471b52038ccb435", "sha256": "d22fa187c3964c61f825eea0d1b2567f58c8618b15d9d628cffd66341ea0188c" }, "downloads": -1, "filename": "bioc-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "86af5108d4316dba2471b52038ccb435", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14909, "upload_time": "2018-06-28T17:21:16", "url": "https://files.pythonhosted.org/packages/e8/28/c7c850f5e51af0834b8998d2a7bec07b978e3fd6198173d7cad0c2ae9cf5/bioc-1.2.2-py3-none-any.whl" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "b11e1e7e5a83352c5d3d51fccd1724f6", "sha256": "f21af25048ae08a156a69c35bca0c5eaa8ec846fcdd26cc2cc7b4775d563cad6" }, "downloads": -1, "filename": "bioc-1.2.3.tar.gz", "has_sig": false, "md5_digest": "b11e1e7e5a83352c5d3d51fccd1724f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13212, "upload_time": "2018-10-23T03:17:09", "url": "https://files.pythonhosted.org/packages/3a/5f/2aaab4a2c936ef5efe21d625297c068b8e03cb989db0de806766c673fef0/bioc-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "8def7155a1839d727c3482a6566d6fe0", "sha256": "8eb4848c006f829eab1d1f9235e241db461ba956636e0800f23666bc71e2b84b" }, "downloads": -1, "filename": "bioc-1.2.4.tar.gz", "has_sig": false, "md5_digest": "8def7155a1839d727c3482a6566d6fe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14137, "upload_time": "2018-10-28T04:38:01", "url": "https://files.pythonhosted.org/packages/1a/cf/b3aa35c4fc145245a2c42280201a4fedecb02e8beb6e5f7c04df8e9dd9a4/bioc-1.2.4.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "549b5ea6e5134f64c2d229855413b950", "sha256": "4afd0695b3d527515da427b8751e6c0cda69120008a9ff5bb08746e31f50e4f5" }, "downloads": -1, "filename": "bioc-1.3.tar.gz", "has_sig": false, "md5_digest": "549b5ea6e5134f64c2d229855413b950", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13662, "upload_time": "2018-10-29T04:43:03", "url": "https://files.pythonhosted.org/packages/63/67/bf4e6f019fb78f04fe6d5af5e985a23be63ced6472dd6d0129613a651900/bioc-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "0c62045f20197bc020e21ca11e007571", "sha256": "80a9702a2784b1796df8c2a48145642044ebafeea966cd29d1c782dabb960966" }, "downloads": -1, "filename": "bioc-1.3.1.tar.gz", "has_sig": false, "md5_digest": "0c62045f20197bc020e21ca11e007571", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14933, "upload_time": "2018-11-01T19:41:53", "url": "https://files.pythonhosted.org/packages/1b/5a/919d29184b6b8451cd8147d32df78d549249eb3109be7613b4ca7d027ba9/bioc-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "d724dfb805d02afb2e83e9e681f6aae4", "sha256": "7a008a6b411452e267f437e9a86c0147efb5c860406e76d2a471cfbe9dbe588e" }, "downloads": -1, "filename": "bioc-1.3.2.tar.gz", "has_sig": false, "md5_digest": "d724dfb805d02afb2e83e9e681f6aae4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 15544, "upload_time": "2019-09-17T01:43:13", "url": "https://files.pythonhosted.org/packages/01/ec/4a63c334b60a98fc914a11dc35c61138a9bd29ef6633a57055740c8bc575/bioc-1.3.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d724dfb805d02afb2e83e9e681f6aae4", "sha256": "7a008a6b411452e267f437e9a86c0147efb5c860406e76d2a471cfbe9dbe588e" }, "downloads": -1, "filename": "bioc-1.3.2.tar.gz", "has_sig": false, "md5_digest": "d724dfb805d02afb2e83e9e681f6aae4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 15544, "upload_time": "2019-09-17T01:43:13", "url": "https://files.pythonhosted.org/packages/01/ec/4a63c334b60a98fc914a11dc35c61138a9bd29ef6633a57055740c8bc575/bioc-1.3.2.tar.gz" } ] }