fastobo


Namefastobo JSON
Version 0.12.3 PyPI version JSON
download
home_pagehttps://github.com/fastobo/fastobo-py
SummaryFaultless AST for Open Biomedical Ontologies in Python.
upload_time2023-12-06 12:34:30
maintainer
docs_urlNone
authorMartin Larralde
requires_python>=3.7
licenseMIT
keywords ontologies ontology obo obofoundry parser syntax ast
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # `fastobo-py` [![Star me](https://img.shields.io/github/stars/fastobo/fastobo-py.svg?style=social&label=Star&maxAge=3600)](https://github.com/fastobo/fastobo-py/stargazers)

*Faultless AST for Open Biomedical Ontologies in Python.*

[![Actions](https://img.shields.io/github/actions/workflow/status/fastobo/fastobo-py/test.yml?branch=master&style=flat-square&maxAge=600)](https://github.com/fastobo/fastobo-py/actions)
[![Codecov](https://img.shields.io/codecov/c/gh/fastobo/fastobo-py/master.svg?style=flat-square&maxAge=600)](https://codecov.io/gh/fastobo/fastobo-py)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/fastobo/fastobo-py/)
[![PyPI](https://img.shields.io/pypi/v/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo)
[![Wheel](https://img.shields.io/pypi/wheel/fastobo.svg?style=flat-square&maxAge=2678400)](https://pypi.org/project/fastobo/#files)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/fastobo?style=flat-square&maxAge=3600)](https://anaconda.org/bioconda/fastobo)
[![Python Versions](https://img.shields.io/pypi/pyversions/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo/#files)
[![PyPI - Implementation](https://img.shields.io/pypi/implementation/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo/#files)
[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/fastobo/fastobo-py/blob/master/CHANGELOG.md)
[![Documentation](https://img.shields.io/readthedocs/fastobo.svg?maxAge=3600&style=flat-square)](https://fastobo.readthedocs.io/)
[![GitHub issues](https://img.shields.io/github/issues/fastobo/fastobo-py.svg?style=flat-square&maxAge=600)](https://github.com/fastobo/fastobo-py/issues)
[![DOI](https://img.shields.io/badge/doi-10.7490%2Ff1000research.1117405.1-brightgreen?style=flat-square&maxAge=31536000)](https://f1000research.com/posters/8-1500)
[![Downloads](https://img.shields.io/pypi/fastobo?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/fastobo)


## Overview

[`fastobo`](https://crates.io/crates/fastobo) is a Rust library implementing a
reliable parser for the OBO file format 1.4. This extension module exports
idiomatic Python bindings that can be used to load, edit and serialize ontologies
in the OBO format.


## Installation

If your platform has no pre-built binaries available, you will need to have the Rust
compiler installed. See the [documentation on `rust-lang.org`](https://forge.rust-lang.org/other-installation-methods.html)
to learn how to install Rust on your machine.

Installation is then supported through `pip`:
```console
$ pip install fastobo --user
```


## Usage

An `OboDoc` instance can be instantiated from a path or from a binary file handle
using the `fastobo.load` function, or from a string using the `fastobo.loads` function.

```python
import fastobo
obodoc = fastobo.load("../data/ms.obo")
```

Loading from a `gzip` file is supported:
```python
import fastobo
import gzip
gzdoc = fastobo.load(gzip.open("../data/cl.obo.gz"))
```

*Comments can be parsed but neither edited nor serialized, because of a limitation
with `pyo3` (the library used to generate the Python bindings). They are supported
in the Rust version of `fastobo`.*

## Feedback

Found a bug ? Have an enhancement request ? Head over to the
[GitHub issue tracker](https://github.com/fastobo/fastobo-py/issues) of the project if
you need to report or ask something. If you are filling in on a bug, please include as much
information as you can about the issue, and try to recreate the same bug in a simple, easily
reproducible situation.

The following people have contributed to this project:

- Alex Henrie ([@alexhenrie](https://github.com/alexhenrie))
- Patrick Kalita ([@pkalita-lbl](https://github.com/pkalita-lbl))


## About

This project was developed by [Martin Larralde](https://github.com/althonos)
as part of a Master's Degree internship in the [BBOP team](http://berkeleybop.org/) of the
[Lawrence Berkeley National Laboratory](https://www.lbl.gov/), under the supervision of
[Chris Mungall](http://biosciences.lbl.gov/profiles/chris-mungall/). Cite this project as:

*Larralde M.* **Developing Python and Rust libraries to improve the ontology ecosystem**
*\[version 1; not peer reviewed\].* F1000Research 2019, 8(ISCB Comm J):1500 (poster)
([https://doi.org/10.7490/f1000research.1117405.1](https://doi.org/10.7490/f1000research.1117405.1))

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fastobo/fastobo-py",
    "name": "fastobo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "ontologies,ontology,obo,obofoundry,parser,syntax,ast",
    "author": "Martin Larralde",
    "author_email": "martin.larralde@embl.de",
    "download_url": "https://files.pythonhosted.org/packages/ff/5a/4c691a5628d2d20e70ddb6ddd248f98fc13828665cd84a3b84efa2aa436d/fastobo-0.12.3.tar.gz",
    "platform": "any",
    "description": "# `fastobo-py` [![Star me](https://img.shields.io/github/stars/fastobo/fastobo-py.svg?style=social&label=Star&maxAge=3600)](https://github.com/fastobo/fastobo-py/stargazers)\n\n*Faultless AST for Open Biomedical Ontologies in Python.*\n\n[![Actions](https://img.shields.io/github/actions/workflow/status/fastobo/fastobo-py/test.yml?branch=master&style=flat-square&maxAge=600)](https://github.com/fastobo/fastobo-py/actions)\n[![Codecov](https://img.shields.io/codecov/c/gh/fastobo/fastobo-py/master.svg?style=flat-square&maxAge=600)](https://codecov.io/gh/fastobo/fastobo-py)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)\n[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/fastobo/fastobo-py/)\n[![PyPI](https://img.shields.io/pypi/v/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo)\n[![Wheel](https://img.shields.io/pypi/wheel/fastobo.svg?style=flat-square&maxAge=2678400)](https://pypi.org/project/fastobo/#files)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/fastobo?style=flat-square&maxAge=3600)](https://anaconda.org/bioconda/fastobo)\n[![Python Versions](https://img.shields.io/pypi/pyversions/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo/#files)\n[![PyPI - Implementation](https://img.shields.io/pypi/implementation/fastobo.svg?style=flat-square&maxAge=600)](https://pypi.org/project/fastobo/#files)\n[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/fastobo/fastobo-py/blob/master/CHANGELOG.md)\n[![Documentation](https://img.shields.io/readthedocs/fastobo.svg?maxAge=3600&style=flat-square)](https://fastobo.readthedocs.io/)\n[![GitHub issues](https://img.shields.io/github/issues/fastobo/fastobo-py.svg?style=flat-square&maxAge=600)](https://github.com/fastobo/fastobo-py/issues)\n[![DOI](https://img.shields.io/badge/doi-10.7490%2Ff1000research.1117405.1-brightgreen?style=flat-square&maxAge=31536000)](https://f1000research.com/posters/8-1500)\n[![Downloads](https://img.shields.io/pypi/fastobo?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/fastobo)\n\n\n## Overview\n\n[`fastobo`](https://crates.io/crates/fastobo) is a Rust library implementing a\nreliable parser for the OBO file format 1.4. This extension module exports\nidiomatic Python bindings that can be used to load, edit and serialize ontologies\nin the OBO format.\n\n\n## Installation\n\nIf your platform has no pre-built binaries available, you will need to have the Rust\ncompiler installed. See the [documentation on `rust-lang.org`](https://forge.rust-lang.org/other-installation-methods.html)\nto learn how to install Rust on your machine.\n\nInstallation is then supported through `pip`:\n```console\n$ pip install fastobo --user\n```\n\n\n## Usage\n\nAn `OboDoc` instance can be instantiated from a path or from a binary file handle\nusing the `fastobo.load` function, or from a string using the `fastobo.loads` function.\n\n```python\nimport fastobo\nobodoc = fastobo.load(\"../data/ms.obo\")\n```\n\nLoading from a `gzip` file is supported:\n```python\nimport fastobo\nimport gzip\ngzdoc = fastobo.load(gzip.open(\"../data/cl.obo.gz\"))\n```\n\n*Comments can be parsed but neither edited nor serialized, because of a limitation\nwith `pyo3` (the library used to generate the Python bindings). They are supported\nin the Rust version of `fastobo`.*\n\n## Feedback\n\nFound a bug ? Have an enhancement request ? Head over to the\n[GitHub issue tracker](https://github.com/fastobo/fastobo-py/issues) of the project if\nyou need to report or ask something. If you are filling in on a bug, please include as much\ninformation as you can about the issue, and try to recreate the same bug in a simple, easily\nreproducible situation.\n\nThe following people have contributed to this project:\n\n- Alex Henrie ([@alexhenrie](https://github.com/alexhenrie))\n- Patrick Kalita ([@pkalita-lbl](https://github.com/pkalita-lbl))\n\n\n## About\n\nThis project was developed by [Martin Larralde](https://github.com/althonos)\nas part of a Master's Degree internship in the [BBOP team](http://berkeleybop.org/) of the\n[Lawrence Berkeley National Laboratory](https://www.lbl.gov/), under the supervision of\n[Chris Mungall](http://biosciences.lbl.gov/profiles/chris-mungall/). Cite this project as:\n\n*Larralde M.* **Developing Python and Rust libraries to improve the ontology ecosystem**\n*\\[version 1; not peer reviewed\\].* F1000Research 2019, 8(ISCB Comm J):1500 (poster)\n([https://doi.org/10.7490/f1000research.1117405.1](https://doi.org/10.7490/f1000research.1117405.1))\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Faultless AST for Open Biomedical Ontologies in Python.",
    "version": "0.12.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/fastobo/fastobo-py/issues",
        "Changelog": "https://fastobo.readthedocs.io/en/latest/changes.html",
        "Conda Recipe": "https://anaconda.org/bioconda/fastobo",
        "Documentation": "https://fastobo.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/fastobo/fastobo-py"
    },
    "split_keywords": [
        "ontologies",
        "ontology",
        "obo",
        "obofoundry",
        "parser",
        "syntax",
        "ast"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "783a6729c07900377545e10336b5ee2e023045a2ed435cc396c2d3e1bc7a5a84",
                "md5": "1599847a1b72dabb66ed2ef034888492",
                "sha256": "79fe4f5ba1ec1a2bc1ca0d65834cfc622db639128ba89019328937e623c54094"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1599847a1b72dabb66ed2ef034888492",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1789872,
            "upload_time": "2023-12-06T12:33:07",
            "upload_time_iso_8601": "2023-12-06T12:33:07.296063Z",
            "url": "https://files.pythonhosted.org/packages/78/3a/6729c07900377545e10336b5ee2e023045a2ed435cc396c2d3e1bc7a5a84/fastobo-0.12.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7740005475de59d7d9364379871240c6a6a6aaf8069a79aa83b2ee23d0f89f58",
                "md5": "6eba123cb5c3d8a7763ca3c16d4e3637",
                "sha256": "21c347ec270d0ef6e120ba701370a8ef20953654b397d2814f62595d4d7c0062"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6eba123cb5c3d8a7763ca3c16d4e3637",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1728193,
            "upload_time": "2023-12-06T12:33:10",
            "upload_time_iso_8601": "2023-12-06T12:33:10.100237Z",
            "url": "https://files.pythonhosted.org/packages/77/40/005475de59d7d9364379871240c6a6a6aaf8069a79aa83b2ee23d0f89f58/fastobo-0.12.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97f23413ce3b273a6bc675c40b491be5fa25154a61444f41b246209b2094f6ea",
                "md5": "6972f290f09cd7c75327c4ef705d0b5f",
                "sha256": "42b5cc3676bfbe902632075455eb8faef2e3c2812423bb172e0c9bb905e93e04"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6972f290f09cd7c75327c4ef705d0b5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2013890,
            "upload_time": "2023-12-06T12:33:12",
            "upload_time_iso_8601": "2023-12-06T12:33:12.203462Z",
            "url": "https://files.pythonhosted.org/packages/97/f2/3413ce3b273a6bc675c40b491be5fa25154a61444f41b246209b2094f6ea/fastobo-0.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e72cb9fa4dc9b3d15a16aa86add09e5f758a9e1f9ba23ec45a714815319b8df",
                "md5": "b4ac4b478ced4f35e643a99c24fc8eb2",
                "sha256": "922e61874e3c436c1990fb741f69b15c8395d1c760c569f2b4f024c7d315a0f4"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4ac4b478ced4f35e643a99c24fc8eb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2005960,
            "upload_time": "2023-12-06T12:33:14",
            "upload_time_iso_8601": "2023-12-06T12:33:14.294655Z",
            "url": "https://files.pythonhosted.org/packages/4e/72/cb9fa4dc9b3d15a16aa86add09e5f758a9e1f9ba23ec45a714815319b8df/fastobo-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93e5dff9b9f023b59dc88e0f8cb3d7e4956f8ccbb355840aa36218a002f7cae4",
                "md5": "ce37d2823a332db39c2c5c27e3779063",
                "sha256": "c8f73c80ae92fd7ba8e0532880b53308200563a7ce2137ed751dd3bfb5dcde88"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce37d2823a332db39c2c5c27e3779063",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1641733,
            "upload_time": "2023-12-06T12:33:16",
            "upload_time_iso_8601": "2023-12-06T12:33:16.508485Z",
            "url": "https://files.pythonhosted.org/packages/93/e5/dff9b9f023b59dc88e0f8cb3d7e4956f8ccbb355840aa36218a002f7cae4/fastobo-0.12.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1121fa4726611b9111f7f06e365e32cfe02f286ee747eca3761a82366d4ef284",
                "md5": "76690ee2744d0db1d52fbf47e7e875d5",
                "sha256": "7862627caf2deda767a8b5278f7da3bf6cb8173130505f7aed03c41d5b512de9"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76690ee2744d0db1d52fbf47e7e875d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1789798,
            "upload_time": "2023-12-06T12:33:18",
            "upload_time_iso_8601": "2023-12-06T12:33:18.681981Z",
            "url": "https://files.pythonhosted.org/packages/11/21/fa4726611b9111f7f06e365e32cfe02f286ee747eca3761a82366d4ef284/fastobo-0.12.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3688dfa03441c9cf9ee5433edeb1a8295a1d28a7b85b8738f7f49547f783b053",
                "md5": "fe2fcd8c9da2989a818dd408a1e4decb",
                "sha256": "b496e003db5ae1d27de3c5078a3a00d1bcb84b436eb68461a55efd3af979bbc6"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fe2fcd8c9da2989a818dd408a1e4decb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1728153,
            "upload_time": "2023-12-06T12:33:20",
            "upload_time_iso_8601": "2023-12-06T12:33:20.168928Z",
            "url": "https://files.pythonhosted.org/packages/36/88/dfa03441c9cf9ee5433edeb1a8295a1d28a7b85b8738f7f49547f783b053/fastobo-0.12.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0e46763baf33487cd34253870e9b6bbcdd8d2ab9ce3e58f53d222144f9ce0ff",
                "md5": "42efe6c37de75256580160d402e8850b",
                "sha256": "2fed9875760ea2f0d7d9a3697f83a3168c3cd46005b41096dafbae97220a9637"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42efe6c37de75256580160d402e8850b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2014429,
            "upload_time": "2023-12-06T12:33:21",
            "upload_time_iso_8601": "2023-12-06T12:33:21.743500Z",
            "url": "https://files.pythonhosted.org/packages/e0/e4/6763baf33487cd34253870e9b6bbcdd8d2ab9ce3e58f53d222144f9ce0ff/fastobo-0.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "235671bb19b601ca16bfc4ef75ad4ee1c1f492ea3d2c21737c9b6ac2ce642147",
                "md5": "b7c5b3f0c7e1aa0854756d67ec2f56e0",
                "sha256": "debab1d3144506a9b4c0d98261ecf7bdcadb5f420843358188b11bc9312aec90"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7c5b3f0c7e1aa0854756d67ec2f56e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2006413,
            "upload_time": "2023-12-06T12:33:23",
            "upload_time_iso_8601": "2023-12-06T12:33:23.338890Z",
            "url": "https://files.pythonhosted.org/packages/23/56/71bb19b601ca16bfc4ef75ad4ee1c1f492ea3d2c21737c9b6ac2ce642147/fastobo-0.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71bef3d871c5ade5960c7be3475da5461bdaa9d654aba73648321c1eaf60eb15",
                "md5": "58a580b742623854908360593ca6f23a",
                "sha256": "5566f9f54f836e29edbdae15d22b11982db73fedfaefcbe5cc9f10f2568179a4"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "58a580b742623854908360593ca6f23a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1641737,
            "upload_time": "2023-12-06T12:33:24",
            "upload_time_iso_8601": "2023-12-06T12:33:24.987673Z",
            "url": "https://files.pythonhosted.org/packages/71/be/f3d871c5ade5960c7be3475da5461bdaa9d654aba73648321c1eaf60eb15/fastobo-0.12.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f48822ed39c3854f87fd5d17fb5ed080e8ddf49c9623d9d1288acc39c91c0186",
                "md5": "40750b5d190e65a799691d2f55a40af7",
                "sha256": "a9d6502e397bcb644ada900e33ea70683006c23598758f829be7210e375f7952"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40750b5d190e65a799691d2f55a40af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1788984,
            "upload_time": "2023-12-06T12:33:26",
            "upload_time_iso_8601": "2023-12-06T12:33:26.871970Z",
            "url": "https://files.pythonhosted.org/packages/f4/88/22ed39c3854f87fd5d17fb5ed080e8ddf49c9623d9d1288acc39c91c0186/fastobo-0.12.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a478d5467e4e510c6e056356b2288baf8fba96142faab5dac6966df6cd13804",
                "md5": "3dac1aaaab93063af54b8c4c57d15baf",
                "sha256": "673aa41d260869ba6ae07aaa716c78cb26203662e61b3e401b006d85d748cf76"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3dac1aaaab93063af54b8c4c57d15baf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1727837,
            "upload_time": "2023-12-06T12:33:28",
            "upload_time_iso_8601": "2023-12-06T12:33:28.270463Z",
            "url": "https://files.pythonhosted.org/packages/2a/47/8d5467e4e510c6e056356b2288baf8fba96142faab5dac6966df6cd13804/fastobo-0.12.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c901a807d9eec796f0acd775609b9ff3be5cb8b29ce4d4747b710f59b06440f",
                "md5": "82342b838e5cc0356e9e40419430cbd7",
                "sha256": "68841568868408ac1b020d436ce29de50c7457031051d8d7389dc8d838cb244f"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "82342b838e5cc0356e9e40419430cbd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2018118,
            "upload_time": "2023-12-06T12:33:29",
            "upload_time_iso_8601": "2023-12-06T12:33:29.700653Z",
            "url": "https://files.pythonhosted.org/packages/3c/90/1a807d9eec796f0acd775609b9ff3be5cb8b29ce4d4747b710f59b06440f/fastobo-0.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0775e5b6fb077a54178a20b817b89399162eabb2d664e9a56493a0afe2997053",
                "md5": "481c64afd494caad27096e30fd644781",
                "sha256": "09714ec07d4b0211a3ada40b7b1bfcca64aa01ba24c50d39c4d367bea058f996"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "481c64afd494caad27096e30fd644781",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2010497,
            "upload_time": "2023-12-06T12:33:31",
            "upload_time_iso_8601": "2023-12-06T12:33:31.817550Z",
            "url": "https://files.pythonhosted.org/packages/07/75/e5b6fb077a54178a20b817b89399162eabb2d664e9a56493a0afe2997053/fastobo-0.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8678ede00abcb477ef11187699d1b2c6dc26c471b02baa4b78add59b0e81de4",
                "md5": "1a72eca8f6e28709eca1167ea6e8481d",
                "sha256": "fa6aaa4380825692c863f2cf9a0ad667973af8dd9162fd8282331464489b3f6c"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a72eca8f6e28709eca1167ea6e8481d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1646568,
            "upload_time": "2023-12-06T12:33:34",
            "upload_time_iso_8601": "2023-12-06T12:33:34.100757Z",
            "url": "https://files.pythonhosted.org/packages/e8/67/8ede00abcb477ef11187699d1b2c6dc26c471b02baa4b78add59b0e81de4/fastobo-0.12.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4cded53d6c2e3a3dad9e78fba16a864500b663b584fa73bc25277544d3a4720",
                "md5": "21bdeb0c67ebe33ba58361f211463159",
                "sha256": "fa546543209f3ce95b23c767dd4c2ae4181a81526e8ab2df4a0c079b4073ef72"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21bdeb0c67ebe33ba58361f211463159",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1787259,
            "upload_time": "2023-12-06T12:33:35",
            "upload_time_iso_8601": "2023-12-06T12:33:35.649527Z",
            "url": "https://files.pythonhosted.org/packages/d4/cd/ed53d6c2e3a3dad9e78fba16a864500b663b584fa73bc25277544d3a4720/fastobo-0.12.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b473f4b6df45635145da995eee2996d7fc8b24081b4a72235a739ac18b2036a3",
                "md5": "d5a168cf118ad4a1ce03080587aba7d0",
                "sha256": "9739bb54c025679108a1ba8638f327ddddb68d7cdd666fd9009a72597a590560"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5a168cf118ad4a1ce03080587aba7d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2014241,
            "upload_time": "2023-12-06T12:33:37",
            "upload_time_iso_8601": "2023-12-06T12:33:37.334154Z",
            "url": "https://files.pythonhosted.org/packages/b4/73/f4b6df45635145da995eee2996d7fc8b24081b4a72235a739ac18b2036a3/fastobo-0.12.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6bd27a62d0f70c77c05304ef1728881251e8b3ff0ac51d1c1be5aa94c5d8bb4",
                "md5": "51612675bd575fe9e15b7003a87ea9ce",
                "sha256": "d7cce0096b09a73fef542c17899f84db1234aff7d6bc12c1b8b86e109613bfa0"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51612675bd575fe9e15b7003a87ea9ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2007711,
            "upload_time": "2023-12-06T12:33:39",
            "upload_time_iso_8601": "2023-12-06T12:33:39.547604Z",
            "url": "https://files.pythonhosted.org/packages/a6/bd/27a62d0f70c77c05304ef1728881251e8b3ff0ac51d1c1be5aa94c5d8bb4/fastobo-0.12.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4f081b9f98a0a5fbfdeacbaa7f4aae763e4668dd9bbf10a65eb54ad2b7efb5b",
                "md5": "cbe978e5cfb13c1bc7028563dcb1ec16",
                "sha256": "64e028355b7ca9fb4d2b8f688759e04a7c48c08db55aaafdc599dca9bc4d70fe"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbe978e5cfb13c1bc7028563dcb1ec16",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1642592,
            "upload_time": "2023-12-06T12:33:41",
            "upload_time_iso_8601": "2023-12-06T12:33:41.623164Z",
            "url": "https://files.pythonhosted.org/packages/c4/f0/81b9f98a0a5fbfdeacbaa7f4aae763e4668dd9bbf10a65eb54ad2b7efb5b/fastobo-0.12.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a99034cc6d72ff0250b7d6bdfe8e0c0939a0b822a5d440f1cbb4a6655d13611c",
                "md5": "a7a030fcfb04e8bceab3439a5389b42d",
                "sha256": "525cf2eebb584e5e2a2fe7c9aca4172109a8bdc008cf5699d14ffbd15a136cae"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7a030fcfb04e8bceab3439a5389b42d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1790336,
            "upload_time": "2023-12-06T12:33:43",
            "upload_time_iso_8601": "2023-12-06T12:33:43.628557Z",
            "url": "https://files.pythonhosted.org/packages/a9/90/34cc6d72ff0250b7d6bdfe8e0c0939a0b822a5d440f1cbb4a6655d13611c/fastobo-0.12.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e64ba2992a4d41917dd9dc1c3633092772625c1ed11362338512198030720c9c",
                "md5": "afbf46097da2bd156ec556a68ab3ce6e",
                "sha256": "727743ff6353eb5d2982568e585b7b69fed9f6e63a141ebbbbd3f5d79a4ea8bd"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "afbf46097da2bd156ec556a68ab3ce6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1725230,
            "upload_time": "2023-12-06T12:33:45",
            "upload_time_iso_8601": "2023-12-06T12:33:45.253716Z",
            "url": "https://files.pythonhosted.org/packages/e6/4b/a2992a4d41917dd9dc1c3633092772625c1ed11362338512198030720c9c/fastobo-0.12.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e739bb8edc6386181abca882361df0d4559ed83a9ec97517309887587c04524",
                "md5": "5af29b7246fc0c1e8a56fce9df5cb617",
                "sha256": "5a73ba3d593d420675691e53698cdc21b4500b17036ee80bd26b5acea03192e8"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5af29b7246fc0c1e8a56fce9df5cb617",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2014242,
            "upload_time": "2023-12-06T12:33:46",
            "upload_time_iso_8601": "2023-12-06T12:33:46.716047Z",
            "url": "https://files.pythonhosted.org/packages/1e/73/9bb8edc6386181abca882361df0d4559ed83a9ec97517309887587c04524/fastobo-0.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cbdeab3984f78570bd40e34e0b1c80638915d2c011294569c9d95d01f8e6048",
                "md5": "493a23c440ab6b4a7bac2cf4b577130d",
                "sha256": "377ecc157842a10ecc8a00c8d9ea9f380010cbb1ee123db42b7aca78d6c12cd9"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "493a23c440ab6b4a7bac2cf4b577130d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2007172,
            "upload_time": "2023-12-06T12:33:48",
            "upload_time_iso_8601": "2023-12-06T12:33:48.403076Z",
            "url": "https://files.pythonhosted.org/packages/2c/bd/eab3984f78570bd40e34e0b1c80638915d2c011294569c9d95d01f8e6048/fastobo-0.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ab75a43d38a17eecca315db81f21ca0cc6e8488742e240b4d0ae1cfe6727011",
                "md5": "41285093dd1516487ac1a05dae83d608",
                "sha256": "bd6d4c7be54900022f85403b5c65f80b2b27997e185920a5e50471bf66e7ff08"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41285093dd1516487ac1a05dae83d608",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1642213,
            "upload_time": "2023-12-06T12:33:49",
            "upload_time_iso_8601": "2023-12-06T12:33:49.995287Z",
            "url": "https://files.pythonhosted.org/packages/5a/b7/5a43d38a17eecca315db81f21ca0cc6e8488742e240b4d0ae1cfe6727011/fastobo-0.12.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bcf23a91f6e8d67512ac2f5219a93b50246f675e139e90890016095247ec6e7",
                "md5": "249ad839447094d7718e7e6bb7f67557",
                "sha256": "eea6e991a4e9c0f9e4c752125f72c22ed27fb8ea3c08e4610b1264c3a3100979"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "249ad839447094d7718e7e6bb7f67557",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1790194,
            "upload_time": "2023-12-06T12:33:51",
            "upload_time_iso_8601": "2023-12-06T12:33:51.585415Z",
            "url": "https://files.pythonhosted.org/packages/0b/cf/23a91f6e8d67512ac2f5219a93b50246f675e139e90890016095247ec6e7/fastobo-0.12.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c1ee3c9e7bd4f263d3a35002003f2150cf57dc2cd6c702fc3efcaf8e17326a3",
                "md5": "0fbf433315b55d579637402dd62017e9",
                "sha256": "e1ea49a9f0b8c8a51d920cb2782c88ddb66f44e81db55ee876ccbc6a2c3a12d2"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0fbf433315b55d579637402dd62017e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1729027,
            "upload_time": "2023-12-06T12:33:53",
            "upload_time_iso_8601": "2023-12-06T12:33:53.412145Z",
            "url": "https://files.pythonhosted.org/packages/8c/1e/e3c9e7bd4f263d3a35002003f2150cf57dc2cd6c702fc3efcaf8e17326a3/fastobo-0.12.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcab18c4136ef565e4cf2f846ac6188fe40a99b43ab55d06028b981c015f483",
                "md5": "b3dc0c5f50d2cccf5436b94b20f39431",
                "sha256": "5cdbd0c52a5d0d43035b21294579b73439889e4af08eb5739dc94a59caaa861f"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3dc0c5f50d2cccf5436b94b20f39431",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2014542,
            "upload_time": "2023-12-06T12:33:54",
            "upload_time_iso_8601": "2023-12-06T12:33:54.909574Z",
            "url": "https://files.pythonhosted.org/packages/1b/ca/b18c4136ef565e4cf2f846ac6188fe40a99b43ab55d06028b981c015f483/fastobo-0.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef7f03430d80e01d62f292d6504b89b414004fbe8f52329d5f23976bb014e9ac",
                "md5": "43fcc009854b0103ade007b62f096da2",
                "sha256": "c6acd98a335375c384e236b1e37867150b3b067f3a161c0cfe6a3dcf74aa9bd0"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43fcc009854b0103ade007b62f096da2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2011761,
            "upload_time": "2023-12-06T12:33:56",
            "upload_time_iso_8601": "2023-12-06T12:33:56.356047Z",
            "url": "https://files.pythonhosted.org/packages/ef/7f/03430d80e01d62f292d6504b89b414004fbe8f52329d5f23976bb014e9ac/fastobo-0.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0482af36c30a60cf486dec5b65146fa61c7da0d7292742177491df4ba26f26c4",
                "md5": "dfe1960c7f2471f8cd55694280b1ca5c",
                "sha256": "32ce37ba36f3b5e7b6642b6c0e5b9a0a6d95f78e5e98901f45cbbc958665fe46"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfe1960c7f2471f8cd55694280b1ca5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1642299,
            "upload_time": "2023-12-06T12:33:58",
            "upload_time_iso_8601": "2023-12-06T12:33:58.231786Z",
            "url": "https://files.pythonhosted.org/packages/04/82/af36c30a60cf486dec5b65146fa61c7da0d7292742177491df4ba26f26c4/fastobo-0.12.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33683016080fe4f72d9c05d5341f9058eabc2bfca579b74ad740f1fdc13be1c6",
                "md5": "8e6706c4508ad54d4c5486d7416eb547",
                "sha256": "c8fba47c98201d0c3b0c515e1ded7608a1f3015a5a0a34df8d6cbf201d58a00e"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e6706c4508ad54d4c5486d7416eb547",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1790499,
            "upload_time": "2023-12-06T12:33:59",
            "upload_time_iso_8601": "2023-12-06T12:33:59.862265Z",
            "url": "https://files.pythonhosted.org/packages/33/68/3016080fe4f72d9c05d5341f9058eabc2bfca579b74ad740f1fdc13be1c6/fastobo-0.12.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61257f4236f180d5c972d9cf937a4e6a5906a8210c4ddaadf14fb7094c4fdbec",
                "md5": "1553884b22870c1fd2aa0b90c392e6e2",
                "sha256": "4071609ee8c8e87b03b2e786c6bd6d6845eb3580410bf95ee29c445699a99530"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1553884b22870c1fd2aa0b90c392e6e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2014666,
            "upload_time": "2023-12-06T12:34:01",
            "upload_time_iso_8601": "2023-12-06T12:34:01.872711Z",
            "url": "https://files.pythonhosted.org/packages/61/25/7f4236f180d5c972d9cf937a4e6a5906a8210c4ddaadf14fb7094c4fdbec/fastobo-0.12.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df0ae84f340ee801ddb9043b2268f227d45d45955007523318cb870eb293106a",
                "md5": "b46f71af42a9a88d8599c2bddb7ea7c3",
                "sha256": "34781dd51ad9589e6b73bf6c3854edd22a6aba4d78d9ef17fcba3448b8501abe"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b46f71af42a9a88d8599c2bddb7ea7c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2013895,
            "upload_time": "2023-12-06T12:34:03",
            "upload_time_iso_8601": "2023-12-06T12:34:03.567466Z",
            "url": "https://files.pythonhosted.org/packages/df/0a/e84f340ee801ddb9043b2268f227d45d45955007523318cb870eb293106a/fastobo-0.12.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9f2f925f787460274f34675d5048c52e9a7018d636fe1b1abdb686d3125fbf6",
                "md5": "0824b241c14790dac36debc4650a1842",
                "sha256": "958da0f135270da6fcfb8181114e5f631e77bc11ad897112039764af19085183"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0824b241c14790dac36debc4650a1842",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1642228,
            "upload_time": "2023-12-06T12:34:05",
            "upload_time_iso_8601": "2023-12-06T12:34:05.177273Z",
            "url": "https://files.pythonhosted.org/packages/c9/f2/f925f787460274f34675d5048c52e9a7018d636fe1b1abdb686d3125fbf6/fastobo-0.12.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "189947317f84ef64cee748c6d19781970dcd281b94487b0ed9199bd5c32f6123",
                "md5": "59cd78b7598ca639f6a51e33d33bfeff",
                "sha256": "75977f4cbdfd7b371b9c4107de953c3bd1a57201cec7c877a9a64eff7817b8ce"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59cd78b7598ca639f6a51e33d33bfeff",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1790079,
            "upload_time": "2023-12-06T12:34:06",
            "upload_time_iso_8601": "2023-12-06T12:34:06.745874Z",
            "url": "https://files.pythonhosted.org/packages/18/99/47317f84ef64cee748c6d19781970dcd281b94487b0ed9199bd5c32f6123/fastobo-0.12.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77b61dcb405efae86fba85ed2e75f138aaca0b8fccc5462d0246d88192388110",
                "md5": "bcd6fe89ae8c2a47c86dcd7624ea9ba7",
                "sha256": "4589124050eab5517416a357b8e0c50ecbd36a7caaf3428b3b403f8147858986"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcd6fe89ae8c2a47c86dcd7624ea9ba7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 2017327,
            "upload_time": "2023-12-06T12:34:08",
            "upload_time_iso_8601": "2023-12-06T12:34:08.373414Z",
            "url": "https://files.pythonhosted.org/packages/77/b6/1dcb405efae86fba85ed2e75f138aaca0b8fccc5462d0246d88192388110/fastobo-0.12.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c7517d5940195b89c903081554e11b285871cfff7017ec2c1dbd1eb34a7bd94",
                "md5": "4448bac97c3c6b145ba025c28857f41e",
                "sha256": "4c3bdbc447398a21b5ea35195bf1541f8634d86680ed763b71aa99928859bc2e"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4448bac97c3c6b145ba025c28857f41e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 2011235,
            "upload_time": "2023-12-06T12:34:09",
            "upload_time_iso_8601": "2023-12-06T12:34:09.901094Z",
            "url": "https://files.pythonhosted.org/packages/3c/75/17d5940195b89c903081554e11b285871cfff7017ec2c1dbd1eb34a7bd94/fastobo-0.12.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efd38b549fa6b902cb11868369677afacde26305dc67c6c2086a9d2ad9cafe73",
                "md5": "69ac1c6c923c9fbe6982436769d9eec9",
                "sha256": "29f5180c37428af74ff80f08a4889d13fb716a6ee858debd00ac805f7c4f792b"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "69ac1c6c923c9fbe6982436769d9eec9",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1644073,
            "upload_time": "2023-12-06T12:34:11",
            "upload_time_iso_8601": "2023-12-06T12:34:11.608554Z",
            "url": "https://files.pythonhosted.org/packages/ef/d3/8b549fa6b902cb11868369677afacde26305dc67c6c2086a9d2ad9cafe73/fastobo-0.12.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8840f33849d631710e33dc03928096b323104c798e91962f41b6b47c3228df7",
                "md5": "3dca96028dbd158c7afe021cd2f036f6",
                "sha256": "9e6d701d9f69a94222c621c86ef47fa7d2cebed0a0f455a2c9144a0a8227d4ea"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3dca96028dbd158c7afe021cd2f036f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1790719,
            "upload_time": "2023-12-06T12:34:13",
            "upload_time_iso_8601": "2023-12-06T12:34:13.197693Z",
            "url": "https://files.pythonhosted.org/packages/a8/84/0f33849d631710e33dc03928096b323104c798e91962f41b6b47c3228df7/fastobo-0.12.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "096ce43dad8f39c5213829f03f2ae55e503fc0d391bcfa75d5004e3d1707885a",
                "md5": "2a68f0e24c65baf3c8ae7121b84a59ce",
                "sha256": "d21581d8a22b0acf2db2b987e76c19be3b9e5a714e290690e2858b533bd882a5"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a68f0e24c65baf3c8ae7121b84a59ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2018776,
            "upload_time": "2023-12-06T12:34:15",
            "upload_time_iso_8601": "2023-12-06T12:34:15.135734Z",
            "url": "https://files.pythonhosted.org/packages/09/6c/e43dad8f39c5213829f03f2ae55e503fc0d391bcfa75d5004e3d1707885a/fastobo-0.12.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4cc8e8a7bced209fbbe58198b5cc8c4566e51cb2fbdd9b4292546a1cf20a36",
                "md5": "d5944713bc97538778d3dc22a1889b14",
                "sha256": "3b676acbf95579a72b1fae985442a583a15f2cc358efd061ab304a1f6e14269a"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5944713bc97538778d3dc22a1889b14",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2009013,
            "upload_time": "2023-12-06T12:34:17",
            "upload_time_iso_8601": "2023-12-06T12:34:17.139046Z",
            "url": "https://files.pythonhosted.org/packages/7f/4c/c8e8a7bced209fbbe58198b5cc8c4566e51cb2fbdd9b4292546a1cf20a36/fastobo-0.12.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580b6961cdb1996ddbd3cbe3a5fac7304be98ad098995ad7460689cf1f89530d",
                "md5": "c708237455b7b19b63d01542642ce85c",
                "sha256": "3f245df99769d08c007aa2630b9ca0c2aca628371512f48aaf61953f67625b05"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c708237455b7b19b63d01542642ce85c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1642356,
            "upload_time": "2023-12-06T12:34:20",
            "upload_time_iso_8601": "2023-12-06T12:34:20.425756Z",
            "url": "https://files.pythonhosted.org/packages/58/0b/6961cdb1996ddbd3cbe3a5fac7304be98ad098995ad7460689cf1f89530d/fastobo-0.12.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "691bca63da097fc25f22e69481afcc82435d49fb4a26db48b442e74c771840a3",
                "md5": "4661fa4e80efcf050b7181889ed2831e",
                "sha256": "dc566c24d891ab21eb985fbc73d1b5ef3bfa3f096473060cfddbab8b00669756"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4661fa4e80efcf050b7181889ed2831e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1790397,
            "upload_time": "2023-12-06T12:34:22",
            "upload_time_iso_8601": "2023-12-06T12:34:22.113233Z",
            "url": "https://files.pythonhosted.org/packages/69/1b/ca63da097fc25f22e69481afcc82435d49fb4a26db48b442e74c771840a3/fastobo-0.12.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19ed83c1f09ba7d7a6d2f471911cfc053d1ea948f10a3cef25d83d2c0b072304",
                "md5": "7759e936792b5c009c84d9339c1629c2",
                "sha256": "75205475ce0d6cedd5074107c3719b2c8df4e14cc5d481b1a28a5639418705cd"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7759e936792b5c009c84d9339c1629c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2015185,
            "upload_time": "2023-12-06T12:34:24",
            "upload_time_iso_8601": "2023-12-06T12:34:24.382128Z",
            "url": "https://files.pythonhosted.org/packages/19/ed/83c1f09ba7d7a6d2f471911cfc053d1ea948f10a3cef25d83d2c0b072304/fastobo-0.12.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d56045aac25b2684cd647458cace3ba7e94b477fec2e5da64b70f497d736a0e",
                "md5": "366456ae47f42261641e8f4f8f627e40",
                "sha256": "e180e7dcf53e6fc774230d8a53212c7f710b2265ef2b3b07fe4fc75226bae17c"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "366456ae47f42261641e8f4f8f627e40",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2009072,
            "upload_time": "2023-12-06T12:34:26",
            "upload_time_iso_8601": "2023-12-06T12:34:26.658853Z",
            "url": "https://files.pythonhosted.org/packages/1d/56/045aac25b2684cd647458cace3ba7e94b477fec2e5da64b70f497d736a0e/fastobo-0.12.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cddbbdaaee12a9e79c71b1bf25c3a82929caa44268e5897b803cb19606b1153",
                "md5": "c8e24039319c2c2ed376570e527d5d47",
                "sha256": "5e6f20a884c9409e9968e77ee74d407564814f2360dfc35440de268d753ad85e"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8e24039319c2c2ed376570e527d5d47",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1642230,
            "upload_time": "2023-12-06T12:34:28",
            "upload_time_iso_8601": "2023-12-06T12:34:28.205022Z",
            "url": "https://files.pythonhosted.org/packages/3c/dd/bbdaaee12a9e79c71b1bf25c3a82929caa44268e5897b803cb19606b1153/fastobo-0.12.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff5a4c691a5628d2d20e70ddb6ddd248f98fc13828665cd84a3b84efa2aa436d",
                "md5": "b521718d3d03e487550d22a34c112d43",
                "sha256": "f375932a24b078706797eb9296740f2d2e6987a34309bda7c9f235aba1d74217"
            },
            "downloads": -1,
            "filename": "fastobo-0.12.3.tar.gz",
            "has_sig": false,
            "md5_digest": "b521718d3d03e487550d22a34c112d43",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 19511108,
            "upload_time": "2023-12-06T12:34:30",
            "upload_time_iso_8601": "2023-12-06T12:34:30.755238Z",
            "url": "https://files.pythonhosted.org/packages/ff/5a/4c691a5628d2d20e70ddb6ddd248f98fc13828665cd84a3b84efa2aa436d/fastobo-0.12.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-06 12:34:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fastobo",
    "github_project": "fastobo-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fastobo"
}
        
Elapsed time: 0.15133s