pybison


Namepybison JSON
Version 0.6.4 PyPI version JSON
download
home_pagehttps://github.com/lukeparser/pybison
SummaryPython bindings for bison/flex parser engine
upload_time2024-11-10 11:32:54
maintainerLukeparser Team
docs_urlNone
authorDavid McNab
requires_python>=3.7
licenseGPLv2
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![The pybison logo.](doc/pybison.svg)](https://github.com/lukeparser/pybison)

# PyBison
[![python versions](https://img.shields.io/pypi/pyversions/pybison)](https://pypi.org/project/pybison)
[![wheel](https://img.shields.io/pypi/wheel/pybison)](https://pypi.org/project/pybison/#files)
[![Build](https://github.com/lukeparser/pybison/workflows/Build/badge.svg)](https://github.com/lukeparser/pybison/actions)

Welcome to PyBison!  
Bringing **GNU Bison/Flex**'s raw speed and power to Python  

## What is PyBison?
PyBison is a framework which effectively 'wraps' **Bison** and **Flex into** a Python class structure.

You define a parser class, define tokens and precedences as attributes, and parse targets as methods with rules in the docstrings, then instantiate and run.

Black Magick happens in the background, whereupon you get callbacks each time `yyparse()` resolves a parse target.

## Install

Now, **install pybison** with:
```bash
pip install pybison
```

The following command will verify if the installation succeeded:

```bash
python -c "import bison"
```

## There are already parsers for Python. Why re-invent the wheel?

I looked at all the Python-based parsing frameworks.

IMO, the best one was **PLY** - a pure-python *lexx/yacc* implementation (which I have borrowed from heavily in designing PyBison's OO model).

But PLY suffers some major limitations:

- usage of 'named groups' regular expressions in the lexer creates a hard limit of 100 tokens - not enough to comfortably handle major languages
- pure-python implementation is a convenience, but incurs a cruel performance penalty
- the parser engine is SLR, not full LALR(1)

The other frameworks utilise a fiddly script syntax -

## How do I use this?

Refer to the [examples](https://github.com/lukeparser/pybison/tree/master/examples) and the [docs](https://github.com/lukeparser/pybison/tree/master/doc) for usage.

## Development
You will need:

- [Python](https://www.python.org/), with development headers and libraries
- [pip](https://pypi.org/project/pip/)
- [GNU bison](https://www.gnu.org/software/bison/)
- [flex](https://github.com/westes/flex)
- A standard C compiler and linker

We assume that Python, pip and a C compiler is already installed.

### Dependencies
First, install the dependencies `bison` and `flex`.

**Arch Linux**
```bash
sudo pacman -S bison flex
```
**Ubuntu**
```bash
sudo apt-get install bison flex
```

**Windows**

With [Chocolatey](https://community.chocolatey.org/), you can install the packages as follows:
```bash
choco install winflexbison3
```
Additionally, if a C compiler is needed, [mingw](https://osdn.net/projects/mingw/) can be installed with Chocolatey as well.
```bash
choco install mingw
```

### Debugging

See the short introduction into [debugging](debugging/README.md).

## Collaborators
- PyBison was designed and written by [David McNab <david@freenet.org.nz>](http://freenet.mcnabhosting.com/python/pybison/)
- [smvv](https://github.com/smvv)
- [habibutsu](https://github.com/habibutsu)
- [thisiscam](https://github.com/thisiscam)
- [eugeneai](https://github.com/eugenai)
- [csarn](https://github.com/csarn)
- [sbrodehl](https://github.com/sbrodehl)
- [da-h](https://github.com/da-h)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lukeparser/pybison",
    "name": "pybison",
    "maintainer": "Lukeparser Team",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "David McNab",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/c1/da/5399333e0a5677282b045080cce88324b5b5b0eeb4a3e54177f02a04c897/pybison-0.6.4.tar.gz",
    "platform": null,
    "description": "[![The pybison logo.](doc/pybison.svg)](https://github.com/lukeparser/pybison)\n\n# PyBison\n[![python versions](https://img.shields.io/pypi/pyversions/pybison)](https://pypi.org/project/pybison)\n[![wheel](https://img.shields.io/pypi/wheel/pybison)](https://pypi.org/project/pybison/#files)\n[![Build](https://github.com/lukeparser/pybison/workflows/Build/badge.svg)](https://github.com/lukeparser/pybison/actions)\n\nWelcome to PyBison!  \nBringing **GNU Bison/Flex**'s raw speed and power to Python  \n\n## What is PyBison?\nPyBison is a framework which effectively 'wraps' **Bison** and **Flex into** a Python class structure.\n\nYou define a parser class, define tokens and precedences as attributes, and parse targets as methods with rules in the docstrings, then instantiate and run.\n\nBlack Magick happens in the background, whereupon you get callbacks each time `yyparse()` resolves a parse target.\n\n## Install\n\nNow, **install pybison** with:\n```bash\npip install pybison\n```\n\nThe following command will verify if the installation succeeded:\n\n```bash\npython -c \"import bison\"\n```\n\n## There are already parsers for Python. Why re-invent the wheel?\n\nI looked at all the Python-based parsing frameworks.\n\nIMO, the best one was **PLY** - a pure-python *lexx/yacc* implementation (which I have borrowed from heavily in designing PyBison's OO model).\n\nBut PLY suffers some major limitations:\n\n- usage of 'named groups' regular expressions in the lexer creates a hard limit of 100 tokens - not enough to comfortably handle major languages\n- pure-python implementation is a convenience, but incurs a cruel performance penalty\n- the parser engine is SLR, not full LALR(1)\n\nThe other frameworks utilise a fiddly script syntax -\n\n## How do I use this?\n\nRefer to the [examples](https://github.com/lukeparser/pybison/tree/master/examples) and the [docs](https://github.com/lukeparser/pybison/tree/master/doc) for usage.\n\n## Development\nYou will need:\n\n- [Python](https://www.python.org/), with development headers and libraries\n- [pip](https://pypi.org/project/pip/)\n- [GNU bison](https://www.gnu.org/software/bison/)\n- [flex](https://github.com/westes/flex)\n- A standard C compiler and linker\n\nWe assume that Python, pip and a C compiler is already installed.\n\n### Dependencies\nFirst, install the dependencies `bison` and `flex`.\n\n**Arch Linux**\n```bash\nsudo pacman -S bison flex\n```\n**Ubuntu**\n```bash\nsudo apt-get install bison flex\n```\n\n**Windows**\n\nWith [Chocolatey](https://community.chocolatey.org/), you can install the packages as follows:\n```bash\nchoco install winflexbison3\n```\nAdditionally, if a C compiler is needed, [mingw](https://osdn.net/projects/mingw/) can be installed with Chocolatey as well.\n```bash\nchoco install mingw\n```\n\n### Debugging\n\nSee the short introduction into [debugging](debugging/README.md).\n\n## Collaborators\n- PyBison was designed and written by [David McNab <david@freenet.org.nz>](http://freenet.mcnabhosting.com/python/pybison/)\n- [smvv](https://github.com/smvv)\n- [habibutsu](https://github.com/habibutsu)\n- [thisiscam](https://github.com/thisiscam)\n- [eugeneai](https://github.com/eugenai)\n- [csarn](https://github.com/csarn)\n- [sbrodehl](https://github.com/sbrodehl)\n- [da-h](https://github.com/da-h)\n",
    "bugtrack_url": null,
    "license": "GPLv2",
    "summary": "Python bindings for bison/flex parser engine",
    "version": "0.6.4",
    "project_urls": {
        "Homepage": "https://github.com/lukeparser/pybison"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6db5f0c20bc2b7d77cf1b4b8afff5303d43fb30e3c09fb033ce68d8a2d905e5f",
                "md5": "a18f5d97773117dcb5487d32b1e2bfa4",
                "sha256": "d8a4106d89e02fa77060b4a9435d95b260317eba2970a911466dc627c52da395"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a18f5d97773117dcb5487d32b1e2bfa4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 289542,
            "upload_time": "2024-11-10T12:01:53",
            "upload_time_iso_8601": "2024-11-10T12:01:53.510137Z",
            "url": "https://files.pythonhosted.org/packages/6d/b5/f0c20bc2b7d77cf1b4b8afff5303d43fb30e3c09fb033ce68d8a2d905e5f/pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cec978fe94270e7f51822b6e75a4c6a5e78da1e1e4f963dc2edd3250714de062",
                "md5": "00804edc741f59d943604fc14c15b7cc",
                "sha256": "4ad2cf22fb496c1bac4250e09f1abfe45e7b03cd525fc709c78bf62f6a37c976"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "00804edc741f59d943604fc14c15b7cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 280771,
            "upload_time": "2024-11-10T12:01:54",
            "upload_time_iso_8601": "2024-11-10T12:01:54.633352Z",
            "url": "https://files.pythonhosted.org/packages/ce/c9/78fe94270e7f51822b6e75a4c6a5e78da1e1e4f963dc2edd3250714de062/pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a6522a2b0d2f7a9ea4941f783b22ebd6d1e0b5ad3774e7e5254cfe87fcb517",
                "md5": "71dd660a7b8de33b2e55c26d2de7c2e1",
                "sha256": "5ae52dbd80b4c7eb7909d8f56649a0a3deb76bb7a694292a03f9287baeae5824"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "71dd660a7b8de33b2e55c26d2de7c2e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 767847,
            "upload_time": "2024-11-10T12:01:55",
            "upload_time_iso_8601": "2024-11-10T12:01:55.882618Z",
            "url": "https://files.pythonhosted.org/packages/b8/a6/522a2b0d2f7a9ea4941f783b22ebd6d1e0b5ad3774e7e5254cfe87fcb517/pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d48d739e3250f9ace5f3bd7d1441a07921183ba4c5e82c694eb674f1d0d678d",
                "md5": "05002d82203d890f83b9af7c949d254e",
                "sha256": "9bbe6d4e40c04b5e70c3f9a344eed92be54e0ef53f0273e7174ff2fed72fbb9f"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05002d82203d890f83b9af7c949d254e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 778438,
            "upload_time": "2024-11-10T12:01:57",
            "upload_time_iso_8601": "2024-11-10T12:01:57.588577Z",
            "url": "https://files.pythonhosted.org/packages/1d/48/d739e3250f9ace5f3bd7d1441a07921183ba4c5e82c694eb674f1d0d678d/pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce2ee421ff39ba313895cf92d8492d4fae411b294a9588eaf9a1a0171821c75d",
                "md5": "0ea767df24ab3558b30fd6e7788e1083",
                "sha256": "100a03d954db3a3120cf4a04fe57fef4948385cbb777d3173eb47a08f139c06c"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0ea767df24ab3558b30fd6e7788e1083",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 428719,
            "upload_time": "2024-11-10T12:01:58",
            "upload_time_iso_8601": "2024-11-10T12:01:58.764944Z",
            "url": "https://files.pythonhosted.org/packages/ce/2e/e421ff39ba313895cf92d8492d4fae411b294a9588eaf9a1a0171821c75d/pybison-0.6.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9d987a83d3ee97d38e34693179e799f28d4f96f190aa662a60c20297949c125",
                "md5": "91337093b4fc6a8710e445f7d4529e78",
                "sha256": "711a1f46eba15e1cd01c364a78ac24352e25bf3f62fae27901557efe949a3129"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91337093b4fc6a8710e445f7d4529e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 289837,
            "upload_time": "2024-11-10T12:01:59",
            "upload_time_iso_8601": "2024-11-10T12:01:59.811220Z",
            "url": "https://files.pythonhosted.org/packages/f9/d9/87a83d3ee97d38e34693179e799f28d4f96f190aa662a60c20297949c125/pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a31c1c82118d9423e51c514d0c4cfba1faba44192daf2a24a3721fb01b087ac8",
                "md5": "cba25446ca02955062895931ebf5f70d",
                "sha256": "12016f21fcc5b3ee8259d653af900c37f50578759f0996cd45c79a0c43ef014e"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cba25446ca02955062895931ebf5f70d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 280878,
            "upload_time": "2024-11-10T12:02:00",
            "upload_time_iso_8601": "2024-11-10T12:02:00.850627Z",
            "url": "https://files.pythonhosted.org/packages/a3/1c/1c82118d9423e51c514d0c4cfba1faba44192daf2a24a3721fb01b087ac8/pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0c80b7a046effe90fad13a82ee29d067aa367623b3a2167e59618d22fd0be8e",
                "md5": "958d506d810621ec12bdb23625c44cae",
                "sha256": "985d6ec0fdeb7958e447c740bc7000f0d3721c45b2da801d78fa0935f355f2d7"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "958d506d810621ec12bdb23625c44cae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 820174,
            "upload_time": "2024-11-10T12:02:01",
            "upload_time_iso_8601": "2024-11-10T12:02:01.943023Z",
            "url": "https://files.pythonhosted.org/packages/d0/c8/0b7a046effe90fad13a82ee29d067aa367623b3a2167e59618d22fd0be8e/pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faf015b7b1baa3a5a5a8092ea41936490c7dcc3f4d9fd143d37c59e7547cdbe8",
                "md5": "6f5d227b075c4c9abda3ac68e2b92fc6",
                "sha256": "92cd4057f1a53d39664528076fbf7099c6d241d067d2cc2e2b1ef0e2537ffa30"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f5d227b075c4c9abda3ac68e2b92fc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 835600,
            "upload_time": "2024-11-10T12:02:03",
            "upload_time_iso_8601": "2024-11-10T12:02:03.720476Z",
            "url": "https://files.pythonhosted.org/packages/fa/f0/15b7b1baa3a5a5a8092ea41936490c7dcc3f4d9fd143d37c59e7547cdbe8/pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca4f13966280ace7db845cede27d54548332e1c37210a35cf531bdb7a7bdbc41",
                "md5": "9b7dfcb0dd14ec5b9e60d31f06b2e1c4",
                "sha256": "fc39ed52853232026445a595d76e513b6d457d364c5ce7097413d6df58bd2659"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9b7dfcb0dd14ec5b9e60d31f06b2e1c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 429674,
            "upload_time": "2024-11-10T12:02:05",
            "upload_time_iso_8601": "2024-11-10T12:02:05.060055Z",
            "url": "https://files.pythonhosted.org/packages/ca/4f/13966280ace7db845cede27d54548332e1c37210a35cf531bdb7a7bdbc41/pybison-0.6.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "624dc25940811b6b6a75999f5b9e09cfc4713621a1bddaa10a8e6ab51fddb1c1",
                "md5": "9f684d513774e7aad673eb3b7b99e8ba",
                "sha256": "63e12d10a6bb9051557a3567cf339874fc90c4b1fc71258caf81179bd3443e0c"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f684d513774e7aad673eb3b7b99e8ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 283848,
            "upload_time": "2024-11-10T12:02:06",
            "upload_time_iso_8601": "2024-11-10T12:02:06.946152Z",
            "url": "https://files.pythonhosted.org/packages/62/4d/c25940811b6b6a75999f5b9e09cfc4713621a1bddaa10a8e6ab51fddb1c1/pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f71a1499b4d1717214a1c67ad0c74e79537dde5005b9137a1f1730adf7ba6a4e",
                "md5": "1e4f0608e2c224ef20dff088976f8f07",
                "sha256": "7a8ae116c517d25aa72c300090397c8ce0d38709c48d4c3abff5175f31f3f58b"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e4f0608e2c224ef20dff088976f8f07",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 278799,
            "upload_time": "2024-11-10T12:02:08",
            "upload_time_iso_8601": "2024-11-10T12:02:08.166645Z",
            "url": "https://files.pythonhosted.org/packages/f7/1a/1499b4d1717214a1c67ad0c74e79537dde5005b9137a1f1730adf7ba6a4e/pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8c6f9acae9235ff39e0c71a5136fbd03b0ac4808fff2712e68b51a9ca7e0b1d",
                "md5": "6551d57f1121338c86752d979f56625a",
                "sha256": "1fec1a410f7b2178c71d4744ad78c7dfd58d61871947bcb1c8b06150c88776b9"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6551d57f1121338c86752d979f56625a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 820571,
            "upload_time": "2024-11-10T12:02:10",
            "upload_time_iso_8601": "2024-11-10T12:02:10.311823Z",
            "url": "https://files.pythonhosted.org/packages/d8/c6/f9acae9235ff39e0c71a5136fbd03b0ac4808fff2712e68b51a9ca7e0b1d/pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c93ea043b3e7041d1761056bf0b8bca52af906f037376d24a8256fe971b86de4",
                "md5": "f4fdfb99f61b49fe89099c733e46f8bb",
                "sha256": "3b7484fad7115a4ebbf8bf84d2acce4662acf1976aaea9f6f54cfb7c34b7282f"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4fdfb99f61b49fe89099c733e46f8bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 834995,
            "upload_time": "2024-11-10T12:02:11",
            "upload_time_iso_8601": "2024-11-10T12:02:11.429031Z",
            "url": "https://files.pythonhosted.org/packages/c9/3e/a043b3e7041d1761056bf0b8bca52af906f037376d24a8256fe971b86de4/pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba5e10f906a6fc9bea75f11ef7e91b7009eb2facd09bb4733e8aa89ea506ea1",
                "md5": "4d4ffa281d66fc1a4a284bca9a88b119",
                "sha256": "9bb2222616e1a3e93671b28f0e04ab98e8b01e51601a2318987883ed90d0d153"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d4ffa281d66fc1a4a284bca9a88b119",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 426008,
            "upload_time": "2024-11-10T12:02:12",
            "upload_time_iso_8601": "2024-11-10T12:02:12.753990Z",
            "url": "https://files.pythonhosted.org/packages/2b/a5/e10f906a6fc9bea75f11ef7e91b7009eb2facd09bb4733e8aa89ea506ea1/pybison-0.6.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f859023bd0daf9a060e6751c94112d3e8bcad5872f74c23128d42e207d7206de",
                "md5": "dc5587a56ed90cfc834071d9aaf5212a",
                "sha256": "5e04670edc57b3910139c3a4f85633f594892b8a7a71e71453f026859d1405b4"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc5587a56ed90cfc834071d9aaf5212a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 282801,
            "upload_time": "2024-11-10T12:02:14",
            "upload_time_iso_8601": "2024-11-10T12:02:14.364882Z",
            "url": "https://files.pythonhosted.org/packages/f8/59/023bd0daf9a060e6751c94112d3e8bcad5872f74c23128d42e207d7206de/pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db102329deb80d1093ecb4279bef4fe49cb17d4a0cf96e2a46010f0c5b5930c7",
                "md5": "42004743b104a6d46b6d99b6543ab233",
                "sha256": "fc2c932a5d8b66d10708b7392688fd785f9a8377aa90f947724bf5a0f6c90900"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "42004743b104a6d46b6d99b6543ab233",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 278277,
            "upload_time": "2024-11-10T12:02:15",
            "upload_time_iso_8601": "2024-11-10T12:02:15.481540Z",
            "url": "https://files.pythonhosted.org/packages/db/10/2329deb80d1093ecb4279bef4fe49cb17d4a0cf96e2a46010f0c5b5930c7/pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e4428fd1eea9f37a6e2ea3c17f1834b68ade1dcba61259f21aca3820765ebd",
                "md5": "2e1d1be906e7af68e3e1b3f1bd8973cb",
                "sha256": "a54dfe39ac2a60c91975d130cd5e174371ecb3adcce393c9eb6b5a6c4ecf3134"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e1d1be906e7af68e3e1b3f1bd8973cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 820503,
            "upload_time": "2024-11-10T12:02:16",
            "upload_time_iso_8601": "2024-11-10T12:02:16.594848Z",
            "url": "https://files.pythonhosted.org/packages/99/e4/428fd1eea9f37a6e2ea3c17f1834b68ade1dcba61259f21aca3820765ebd/pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4044f0dd306ee3d1355d75266a594d564acd58ef8209b2d062bf1b1bc69c492",
                "md5": "fef3935cb5905fdc000f6e7bc089efc7",
                "sha256": "6f5882e6b53d1d44b3b6f2d1ee0af82a3e75707859f558dd228c4ad252698619"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fef3935cb5905fdc000f6e7bc089efc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 838359,
            "upload_time": "2024-11-10T12:02:18",
            "upload_time_iso_8601": "2024-11-10T12:02:18.400237Z",
            "url": "https://files.pythonhosted.org/packages/a4/04/4f0dd306ee3d1355d75266a594d564acd58ef8209b2d062bf1b1bc69c492/pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad784605a57e1db0c7971bfe3f56c03f94ecdb6ba803e17dcd4f460582dfb3ce",
                "md5": "45fbf2c9c80aabbd47c857837dfadf20",
                "sha256": "4f2464148aefcf39e667044e5390dd68265373436876f85c364d3a08fa10486a"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45fbf2c9c80aabbd47c857837dfadf20",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 426041,
            "upload_time": "2024-11-10T12:02:20",
            "upload_time_iso_8601": "2024-11-10T12:02:20.081048Z",
            "url": "https://files.pythonhosted.org/packages/ad/78/4605a57e1db0c7971bfe3f56c03f94ecdb6ba803e17dcd4f460582dfb3ce/pybison-0.6.4-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f0d9d2ded520a9023a51575af309fd5ea6d6ecb28a9f3f20c69b1a998893ce7",
                "md5": "7640e9bb17973a56e80b320c9e39b549",
                "sha256": "3c695c0acc3deccd4ae071cd8c26dbb9fd61c870168865b37992829261db33bd"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7640e9bb17973a56e80b320c9e39b549",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 287519,
            "upload_time": "2024-11-10T12:02:22",
            "upload_time_iso_8601": "2024-11-10T12:02:22.202269Z",
            "url": "https://files.pythonhosted.org/packages/4f/0d/9d2ded520a9023a51575af309fd5ea6d6ecb28a9f3f20c69b1a998893ce7/pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b80c4312db31bf00072df2a8159e48f7146073a276be841f7d85a8a0b98f3e54",
                "md5": "2bc02945e24388020e1050a0f3f3908c",
                "sha256": "57cf06f917e3dd5733868d49265f9fcce395204fda087c7ef506cab7278da0b5"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2bc02945e24388020e1050a0f3f3908c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 692659,
            "upload_time": "2024-11-10T12:02:23",
            "upload_time_iso_8601": "2024-11-10T12:02:23.355765Z",
            "url": "https://files.pythonhosted.org/packages/b8/0c/4312db31bf00072df2a8159e48f7146073a276be841f7d85a8a0b98f3e54/pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3f442c88d4afe507ff1f67d004700504bbdc8e83282ce99a50dd28a0094eb4c",
                "md5": "f21d8ab4500aa0613468cc5c25c594c4",
                "sha256": "32bcfef3f03b4e43228840177458187592437896b780a6c95244232c8de91bca"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f21d8ab4500aa0613468cc5c25c594c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 700276,
            "upload_time": "2024-11-10T12:02:24",
            "upload_time_iso_8601": "2024-11-10T12:02:24.496457Z",
            "url": "https://files.pythonhosted.org/packages/a3/f4/42c88d4afe507ff1f67d004700504bbdc8e83282ce99a50dd28a0094eb4c/pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9167455bf685cfd0f709f753807e4d8c84105f5cebbb3001f5560dbe9369a650",
                "md5": "4ca370ab8c57c8e9feca9a7e6ab7ba94",
                "sha256": "cbcc1c9547f8564657bc4c7b71b550ca8b6a8131021320505eb76befd161de54"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ca370ab8c57c8e9feca9a7e6ab7ba94",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 424448,
            "upload_time": "2024-11-10T12:02:25",
            "upload_time_iso_8601": "2024-11-10T12:02:25.592210Z",
            "url": "https://files.pythonhosted.org/packages/91/67/455bf685cfd0f709f753807e4d8c84105f5cebbb3001f5560dbe9369a650/pybison-0.6.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5c51f53dbc616275741a6085ec0a2741f2c0e6dbed053615d366b14764f5bdb",
                "md5": "f99f18db35ac90e6c0e94226403b2286",
                "sha256": "8ca31d035618ace1abb4c1eb5f73142cb928b0b77a19daf6008071777d29eccf"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f99f18db35ac90e6c0e94226403b2286",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 290307,
            "upload_time": "2024-11-10T12:02:27",
            "upload_time_iso_8601": "2024-11-10T12:02:27.214570Z",
            "url": "https://files.pythonhosted.org/packages/a5/c5/1f53dbc616275741a6085ec0a2741f2c0e6dbed053615d366b14764f5bdb/pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3448700b66a9d6eb7e50a0c5da58c409fe3b44bf32ec57df4ff5df25d3148023",
                "md5": "b25d945eaea1a1fcf62e460ddd86547f",
                "sha256": "ba0d625a919e9e6b5c80ff087b6add046031615e394c14bb398ab3ebcbdd6e44"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b25d945eaea1a1fcf62e460ddd86547f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 281428,
            "upload_time": "2024-11-10T12:02:28",
            "upload_time_iso_8601": "2024-11-10T12:02:28.386781Z",
            "url": "https://files.pythonhosted.org/packages/34/48/700b66a9d6eb7e50a0c5da58c409fe3b44bf32ec57df4ff5df25d3148023/pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b20a8f5f855e4526a4434a54cdfec70a4d05b18b7ce9fe68204fe30bbcda33dc",
                "md5": "e0bd12c1d07eec15146425f019a6afe6",
                "sha256": "d9c0864218c8aa8808e529de090bd7cf0d841e34a6a5a42beacc8b132f0fa442"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0bd12c1d07eec15146425f019a6afe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 764898,
            "upload_time": "2024-11-10T12:02:29",
            "upload_time_iso_8601": "2024-11-10T12:02:29.478555Z",
            "url": "https://files.pythonhosted.org/packages/b2/0a/8f5f855e4526a4434a54cdfec70a4d05b18b7ce9fe68204fe30bbcda33dc/pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88f55d25d52fcfd95503046df7ab3b356aa3debfed42cf5d558c2784d004cf1f",
                "md5": "aaab5ffd88b6f4cb713d10b21ca7ab54",
                "sha256": "a66b0ea87d6dc12ec9f76a52187617044d7e38f2151c80d57204f59e4af183c0"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaab5ffd88b6f4cb713d10b21ca7ab54",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 768259,
            "upload_time": "2024-11-10T12:02:30",
            "upload_time_iso_8601": "2024-11-10T12:02:30.669622Z",
            "url": "https://files.pythonhosted.org/packages/88/f5/5d25d52fcfd95503046df7ab3b356aa3debfed42cf5d558c2784d004cf1f/pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6749adbbeabc2f3c122c0393c7841d3a5976c51405a742d77a7525c52fbdcab3",
                "md5": "6fb5e642a102fd2c709032b122654245",
                "sha256": "7b40a4169ca86969db4eb9b5d0db4b230645624ca11685348c295426c7b13cd0"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6fb5e642a102fd2c709032b122654245",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 432552,
            "upload_time": "2024-11-10T12:02:31",
            "upload_time_iso_8601": "2024-11-10T12:02:31.781076Z",
            "url": "https://files.pythonhosted.org/packages/67/49/adbbeabc2f3c122c0393c7841d3a5976c51405a742d77a7525c52fbdcab3/pybison-0.6.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06cbd48ddd91e659e2e11e41cb196f372bfb9947ffb84c67ae923e8e26bf7e8a",
                "md5": "f7ee333c99bd332659e44ae4028064b1",
                "sha256": "9a648e4bf46b2bb6758c3ad24d01262fef8fed75afa4df4ae9a4a0283081c5e1"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7ee333c99bd332659e44ae4028064b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 290077,
            "upload_time": "2024-11-10T12:02:32",
            "upload_time_iso_8601": "2024-11-10T12:02:32.819758Z",
            "url": "https://files.pythonhosted.org/packages/06/cb/d48ddd91e659e2e11e41cb196f372bfb9947ffb84c67ae923e8e26bf7e8a/pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4183a0b777eb76d9b60e4b2cd4207914b8b9b5277a67ec637388bc63e15cb7d3",
                "md5": "5583039f3a4e3dbdd3c00766cd329263",
                "sha256": "fe023400e3be5b8e04a17eebafaf097f1c8795575e26f3405d94bdc7087a4017"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5583039f3a4e3dbdd3c00766cd329263",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 281246,
            "upload_time": "2024-11-10T12:02:34",
            "upload_time_iso_8601": "2024-11-10T12:02:34.450948Z",
            "url": "https://files.pythonhosted.org/packages/41/83/a0b777eb76d9b60e4b2cd4207914b8b9b5277a67ec637388bc63e15cb7d3/pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d54f7fa3bcb844d7c8cfc5ee0f3fd59747620790f6f5255628d6a881ab38045",
                "md5": "9dccc2dcba73f9bc7f916bdba4776ef2",
                "sha256": "e6227e51751b601b2583920e7612e2d3d462f62422a52f619fd8d1a72edc9a7e"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9dccc2dcba73f9bc7f916bdba4776ef2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 743033,
            "upload_time": "2024-11-10T12:02:35",
            "upload_time_iso_8601": "2024-11-10T12:02:35.487438Z",
            "url": "https://files.pythonhosted.org/packages/9d/54/f7fa3bcb844d7c8cfc5ee0f3fd59747620790f6f5255628d6a881ab38045/pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "867094a706be62345cf9e0e391d0eed4d5fc1960e381c9729f6ec908ade3371a",
                "md5": "35e15ad579af438a1625b90ce8a2b949",
                "sha256": "2cbb8687df3e05e56178dd1e6157a4d7f87eefeda70e4410eddd28892a4cbffa"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35e15ad579af438a1625b90ce8a2b949",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 745719,
            "upload_time": "2024-11-10T12:02:37",
            "upload_time_iso_8601": "2024-11-10T12:02:37.394263Z",
            "url": "https://files.pythonhosted.org/packages/86/70/94a706be62345cf9e0e391d0eed4d5fc1960e381c9729f6ec908ade3371a/pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f5152d71f41a5d3a6c44f16cb8f21272f0329ed6accfc177e18bcdcaa04b78a",
                "md5": "9fa7813cb8698337b21e14263c2f43a2",
                "sha256": "86e6e1e5ea9b2d21860072d25144830edd4bca026a0fbb2ff035ca9cf5ecee84"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9fa7813cb8698337b21e14263c2f43a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 428996,
            "upload_time": "2024-11-10T12:02:39",
            "upload_time_iso_8601": "2024-11-10T12:02:39.256566Z",
            "url": "https://files.pythonhosted.org/packages/0f/51/52d71f41a5d3a6c44f16cb8f21272f0329ed6accfc177e18bcdcaa04b78a/pybison-0.6.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1da5399333e0a5677282b045080cce88324b5b5b0eeb4a3e54177f02a04c897",
                "md5": "266bb96c856cb9d25dcb58a638647820",
                "sha256": "3a6d208a6bd03f4d1713aeff80393987d8f4522fb593dfa846edff40f5673e9f"
            },
            "downloads": -1,
            "filename": "pybison-0.6.4.tar.gz",
            "has_sig": false,
            "md5_digest": "266bb96c856cb9d25dcb58a638647820",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 170965,
            "upload_time": "2024-11-10T11:32:54",
            "upload_time_iso_8601": "2024-11-10T11:32:54.679249Z",
            "url": "https://files.pythonhosted.org/packages/c1/da/5399333e0a5677282b045080cce88324b5b5b0eeb4a3e54177f02a04c897/pybison-0.6.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-10 11:32:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lukeparser",
    "github_project": "pybison",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pybison"
}
        
Elapsed time: 1.33824s