prelude-parser


Nameprelude-parser JSON
Version 0.12.1 PyPI version JSON
download
home_pagehttps://github.com/pbs-data-solutions/prelude-parser
SummaryParses XML files exported from Prelude EDC into formats usable by Python.
upload_time2024-12-18 15:50:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
keywords parser prelude-edc xml pandas polars
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Prelude Parser

[![Tests Status](https://github.com/pbs-data-solutions/prelude-parser/workflows/Testing/badge.svg?branch=main&event=push)](https://github.com/pbs-data-solutions/prelude-parser/actions?query=workflow%3ATesting+branch%3Amain+event%3Apush)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pbs-data-solutions/prelude-parser/main.svg)](https://results.pre-commit.ci/latest/github/pbs-data-solutions/prelude-parser/main)
[![Coverage](https://codecov.io/github/pbs-data-solutions/prelude-parser/coverage.svg?branch=main)](https://codecov.io/gh/pbs-data-solutions/prelude-parser)
[![PyPI version](https://badge.fury.io/py/prelude-parser.svg)](https://badge.fury.io/py/prelude-parser)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/prelude-parser?color=5cc141)](https://github.com/pbs-data-solutions/prelude-parser)

Parses XML files exported from [Prelude EDC](https://preludeedc.com/) into formats Python can use.

## Installation

```sh
pip install prelude-parser
```

Optionally the `pandas` extra can be installed to parse to a Pandas `DataFrame`

```sh
pip install prelude-parser[pandas]
```

Optionally the `polars` extra can be installed to parse to a Polars `DataFrame`

```sh
pip install prelude-parser[polars]
```

All extras can be install with

```sh
pip install prelude-parser[all]
```

## Usage

Parse a Prelude flat XML file to a Python dictionary.

```py
from prelude_parser import parse_to_dict
data = parse_to_dict("physical_examination.xml")
```

Parse a Prelude flat XML file into a list of Python class. The name of the class is taken from the
form name node in the XML file converted to pascal case. For example a <physical_examination> node
will result in a PhysicalExamination class being created.

```py
from prelude_parser import parse_to_classes
data = parse_to_classes("physical_examination.xml")
```

Parse a Prelude flat XML file into a Pandas DataFrame. This works for Prelude flat XML files that
were exported with the "write tables to seperate files" option. In order to use this option
`prelude-parser` either needs to be installed with the `pandas` extra or the `all` extras.

```py
from prelude_parser.pandas import to_dataframe
df = to_dataframe("physical_examination.xml")
```

Parse a Prelude flat XML file into a Polars DataFrame. This works for Prelude flat XML files that
were exported with the "write tables to seperate files" option. In order to use this option
`prelude-parser` either needs to be installed with the `polars` extra or the `all` extras.

```py
from prelude_parser.polars import to_dataframe
df = to_dataframe("physical_examination.xml")
```

## Contributing

Contributions to this project are welcome. If you are interesting in contributing please see our [contributing guide](CONTRIBUTING.md)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pbs-data-solutions/prelude-parser",
    "name": "prelude-parser",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "parser, prelude-edc, xml, pandas, polars",
    "author": null,
    "author_email": "Paul Sanders <paul@pbsdatasolutions.com>",
    "download_url": "https://files.pythonhosted.org/packages/e5/5d/796068059881c8a822cd0956956c4b9d164b6292594c59994bb6be21f23c/prelude_parser-0.12.1.tar.gz",
    "platform": null,
    "description": "# Prelude Parser\n\n[![Tests Status](https://github.com/pbs-data-solutions/prelude-parser/workflows/Testing/badge.svg?branch=main&event=push)](https://github.com/pbs-data-solutions/prelude-parser/actions?query=workflow%3ATesting+branch%3Amain+event%3Apush)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pbs-data-solutions/prelude-parser/main.svg)](https://results.pre-commit.ci/latest/github/pbs-data-solutions/prelude-parser/main)\n[![Coverage](https://codecov.io/github/pbs-data-solutions/prelude-parser/coverage.svg?branch=main)](https://codecov.io/gh/pbs-data-solutions/prelude-parser)\n[![PyPI version](https://badge.fury.io/py/prelude-parser.svg)](https://badge.fury.io/py/prelude-parser)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/prelude-parser?color=5cc141)](https://github.com/pbs-data-solutions/prelude-parser)\n\nParses XML files exported from [Prelude EDC](https://preludeedc.com/) into formats Python can use.\n\n## Installation\n\n```sh\npip install prelude-parser\n```\n\nOptionally the `pandas` extra can be installed to parse to a Pandas `DataFrame`\n\n```sh\npip install prelude-parser[pandas]\n```\n\nOptionally the `polars` extra can be installed to parse to a Polars `DataFrame`\n\n```sh\npip install prelude-parser[polars]\n```\n\nAll extras can be install with\n\n```sh\npip install prelude-parser[all]\n```\n\n## Usage\n\nParse a Prelude flat XML file to a Python dictionary.\n\n```py\nfrom prelude_parser import parse_to_dict\ndata = parse_to_dict(\"physical_examination.xml\")\n```\n\nParse a Prelude flat XML file into a list of Python class. The name of the class is taken from the\nform name node in the XML file converted to pascal case. For example a <physical_examination> node\nwill result in a PhysicalExamination class being created.\n\n```py\nfrom prelude_parser import parse_to_classes\ndata = parse_to_classes(\"physical_examination.xml\")\n```\n\nParse a Prelude flat XML file into a Pandas DataFrame. This works for Prelude flat XML files that\nwere exported with the \"write tables to seperate files\" option. In order to use this option\n`prelude-parser` either needs to be installed with the `pandas` extra or the `all` extras.\n\n```py\nfrom prelude_parser.pandas import to_dataframe\ndf = to_dataframe(\"physical_examination.xml\")\n```\n\nParse a Prelude flat XML file into a Polars DataFrame. This works for Prelude flat XML files that\nwere exported with the \"write tables to seperate files\" option. In order to use this option\n`prelude-parser` either needs to be installed with the `polars` extra or the `all` extras.\n\n```py\nfrom prelude_parser.polars import to_dataframe\ndf = to_dataframe(\"physical_examination.xml\")\n```\n\n## Contributing\n\nContributions to this project are welcome. If you are interesting in contributing please see our [contributing guide](CONTRIBUTING.md)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Parses XML files exported from Prelude EDC into formats usable by Python.",
    "version": "0.12.1",
    "project_urls": {
        "Homepage": "https://github.com/pbs-data-solutions/prelude-parser",
        "Source Code": "https://github.com/pbs-data-solutions/prelude-parser"
    },
    "split_keywords": [
        "parser",
        " prelude-edc",
        " xml",
        " pandas",
        " polars"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b350c4b4988ca650083eb908b0e1e9bdf146bc01f9bc574c66eb0c4cc808be1",
                "md5": "8379d1f7d794dbdf6ef358bd78d816ff",
                "sha256": "1035b4a6e23e8383e630be9c3b8a12e04d2ec08853f0aea2ce867e26cc058964"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8379d1f7d794dbdf6ef358bd78d816ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 581842,
            "upload_time": "2024-12-18T15:48:47",
            "upload_time_iso_8601": "2024-12-18T15:48:47.152331Z",
            "url": "https://files.pythonhosted.org/packages/6b/35/0c4b4988ca650083eb908b0e1e9bdf146bc01f9bc574c66eb0c4cc808be1/prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b54b604a74c3ba5cb227181736c7492e84fbda703326f92502bd344f1ad58317",
                "md5": "1677b08153f3fd53cf7b2d33e67b6c8d",
                "sha256": "554aa61b0bc876bb881d5dea31952250a34fbfa41a2be764a900d9edf82714b7"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1677b08153f3fd53cf7b2d33e67b6c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 587659,
            "upload_time": "2024-12-18T15:49:05",
            "upload_time_iso_8601": "2024-12-18T15:49:05.836403Z",
            "url": "https://files.pythonhosted.org/packages/b5/4b/604a74c3ba5cb227181736c7492e84fbda703326f92502bd344f1ad58317/prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e91bdeee992ca3bcd3198dff6f6e62187d9ad9c2b278f0766d1020c348407d2d",
                "md5": "57dbb28fd086e7e9edf4ef043cc0e686",
                "sha256": "6fc60201a9a5234c4b8502c98a96daac143927f48d7fd89c4c34a407b2522a8f"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "57dbb28fd086e7e9edf4ef043cc0e686",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 646754,
            "upload_time": "2024-12-18T15:49:20",
            "upload_time_iso_8601": "2024-12-18T15:49:20.404517Z",
            "url": "https://files.pythonhosted.org/packages/e9/1b/deee992ca3bcd3198dff6f6e62187d9ad9c2b278f0766d1020c348407d2d/prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a54f35044c7e0c936005cd28ded2240ff947ff0d84c8edc2519c8611c9037f1c",
                "md5": "22e65998bd7c009789c9f40b596284ff",
                "sha256": "6d44feec2fefb42846d83bb790e93d5c0f6698e7a97e4de4b51e0235abe49cbd"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "22e65998bd7c009789c9f40b596284ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 671904,
            "upload_time": "2024-12-18T15:49:37",
            "upload_time_iso_8601": "2024-12-18T15:49:37.233722Z",
            "url": "https://files.pythonhosted.org/packages/a5/4f/35044c7e0c936005cd28ded2240ff947ff0d84c8edc2519c8611c9037f1c/prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca953976a6dd44a16e94e4f443290254a2beb7c38ed408bb3b1b5d0bf00db9f3",
                "md5": "43c9b95b3d2c44b73499529f46248451",
                "sha256": "19aa6ac5bad090e05735d1b8bfbe5f5b3382d9923674c04cffaee6d409e2309d"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43c9b95b3d2c44b73499529f46248451",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 592775,
            "upload_time": "2024-12-18T15:50:01",
            "upload_time_iso_8601": "2024-12-18T15:50:01.842526Z",
            "url": "https://files.pythonhosted.org/packages/ca/95/3976a6dd44a16e94e4f443290254a2beb7c38ed408bb3b1b5d0bf00db9f3/prelude_parser-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16505ed1bcc7dde826ea42072804f441632d53229712dcf98bcee603fccd28fb",
                "md5": "11197f4970ea229cf573b650a805f1eb",
                "sha256": "b5c7eb735b6c4fd912bf8b35110adb567e3955a8d1025f4cac82c648016de301"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "11197f4970ea229cf573b650a805f1eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 632917,
            "upload_time": "2024-12-18T15:49:48",
            "upload_time_iso_8601": "2024-12-18T15:49:48.053370Z",
            "url": "https://files.pythonhosted.org/packages/16/50/5ed1bcc7dde826ea42072804f441632d53229712dcf98bcee603fccd28fb/prelude_parser-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ea3450e6f81f6ee10e72cd424377a6d0005092bc2a30ad09105105f52d6ddae",
                "md5": "89aad63671540245b3daec1cc1eb5d66",
                "sha256": "5a18d9b0202cf80dfa5a3aca887751393c4cda4a4cca5d58f14dc9e7ed923c26"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "89aad63671540245b3daec1cc1eb5d66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 401526,
            "upload_time": "2024-12-18T15:50:32",
            "upload_time_iso_8601": "2024-12-18T15:50:32.552308Z",
            "url": "https://files.pythonhosted.org/packages/7e/a3/450e6f81f6ee10e72cd424377a6d0005092bc2a30ad09105105f52d6ddae/prelude_parser-0.12.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9a7f2ee1a2738ea6474275e5ea379a3b0ed807f7c04adffa184c04fe207b510",
                "md5": "3af37f0f08cede54ae4ee2a0dae04a24",
                "sha256": "a21d99ae94f9a2a71ee28628ee4a547dc0afb8c92e927dcb0eab5b57515ba710"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3af37f0f08cede54ae4ee2a0dae04a24",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 424000,
            "upload_time": "2024-12-18T15:50:25",
            "upload_time_iso_8601": "2024-12-18T15:50:25.291540Z",
            "url": "https://files.pythonhosted.org/packages/a9/a7/f2ee1a2738ea6474275e5ea379a3b0ed807f7c04adffa184c04fe207b510/prelude_parser-0.12.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "465f57585cf5f1278841a69211d466cd9cd5d120bed4ce717189f81b31198061",
                "md5": "b034fb8b7a58dae7b6c8d87428113ffb",
                "sha256": "1956d081649f5ff407ca96d05974a630d0300032918a0eb083c0bd5af7240ec5"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b034fb8b7a58dae7b6c8d87428113ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 548119,
            "upload_time": "2024-12-18T15:50:18",
            "upload_time_iso_8601": "2024-12-18T15:50:18.960188Z",
            "url": "https://files.pythonhosted.org/packages/46/5f/57585cf5f1278841a69211d466cd9cd5d120bed4ce717189f81b31198061/prelude_parser-0.12.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "635138287a7e0a03a20fd2a9c675a2b63bad0f1560ed7ad978f80b5720b9be81",
                "md5": "d71cb3f2f829c534d38211ed97d7327d",
                "sha256": "7adc32c22761219fbbfbcf82440e62f8567418e571866649118a07b340a97b06"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d71cb3f2f829c534d38211ed97d7327d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 532282,
            "upload_time": "2024-12-18T15:50:12",
            "upload_time_iso_8601": "2024-12-18T15:50:12.230712Z",
            "url": "https://files.pythonhosted.org/packages/63/51/38287a7e0a03a20fd2a9c675a2b63bad0f1560ed7ad978f80b5720b9be81/prelude_parser-0.12.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f73e9951899d937d0585d5e60f8bf54b025cfa5a22f15d2482720d92e3c1c4f5",
                "md5": "9dc89923ad609b7352cdfd5b0ca796f1",
                "sha256": "54da0b4beea18261b5e9732cf6b54cbb324748f230e0fac142fa5a2591f35339"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9dc89923ad609b7352cdfd5b0ca796f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 582079,
            "upload_time": "2024-12-18T15:48:50",
            "upload_time_iso_8601": "2024-12-18T15:48:50.277362Z",
            "url": "https://files.pythonhosted.org/packages/f7/3e/9951899d937d0585d5e60f8bf54b025cfa5a22f15d2482720d92e3c1c4f5/prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4957eb201b7f545deaa4eb725893a11616241250cb60a1588b7db8965e7f2d59",
                "md5": "9e1486509e1f1128ebdb74a381d0985c",
                "sha256": "0e1964b10bb006c93600c902b5631414213c40d8cad0bf43bab69bcc09151236"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9e1486509e1f1128ebdb74a381d0985c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 588440,
            "upload_time": "2024-12-18T15:49:07",
            "upload_time_iso_8601": "2024-12-18T15:49:07.434277Z",
            "url": "https://files.pythonhosted.org/packages/49/57/eb201b7f545deaa4eb725893a11616241250cb60a1588b7db8965e7f2d59/prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e0f67aaa5df294f12c948a4a2684d93751bca53387e51f29b02a72218009e47",
                "md5": "0c6918b88356341e7925d1661cf46274",
                "sha256": "5b9ca0f5d2d61af33b286d99b62efd5ad7f6c3dbbaba0f756375e5669358508d"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0c6918b88356341e7925d1661cf46274",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 646999,
            "upload_time": "2024-12-18T15:49:22",
            "upload_time_iso_8601": "2024-12-18T15:49:22.102106Z",
            "url": "https://files.pythonhosted.org/packages/4e/0f/67aaa5df294f12c948a4a2684d93751bca53387e51f29b02a72218009e47/prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fcb1d22521b8070be08e70badc4b9d3327200a978f24f5bdfdb1bb11944dcef",
                "md5": "a056a0b3942b077dca98823bf12b5946",
                "sha256": "6909c0015de50c29ed0273d5cf42c7a24725b48db4e26aadd6bf8dda10f11b20"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a056a0b3942b077dca98823bf12b5946",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 671536,
            "upload_time": "2024-12-18T15:49:39",
            "upload_time_iso_8601": "2024-12-18T15:49:39.005656Z",
            "url": "https://files.pythonhosted.org/packages/4f/cb/1d22521b8070be08e70badc4b9d3327200a978f24f5bdfdb1bb11944dcef/prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "766523d9f5ee4fd00657643a0b8d906fd7c6180b94a9f23b052cf85dfee54054",
                "md5": "4c5d98cfc5af1101d1d8c609d88dfb6d",
                "sha256": "df460e0406427cd788bb11da28516937d666928e696fd09cca606ac09b954281"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c5d98cfc5af1101d1d8c609d88dfb6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 592837,
            "upload_time": "2024-12-18T15:50:03",
            "upload_time_iso_8601": "2024-12-18T15:50:03.543847Z",
            "url": "https://files.pythonhosted.org/packages/76/65/23d9f5ee4fd00657643a0b8d906fd7c6180b94a9f23b052cf85dfee54054/prelude_parser-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "388990718772f7d27f6445a01e106231580a3b794ce9fa411717af8b3ebfe3f9",
                "md5": "ed149cc3aeca6fca4c17b72eb290b82e",
                "sha256": "caa9286f9353298b16dea9b8de952842d8b14da1f3180856a2bbcc73841b6694"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ed149cc3aeca6fca4c17b72eb290b82e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 633197,
            "upload_time": "2024-12-18T15:49:50",
            "upload_time_iso_8601": "2024-12-18T15:49:50.307883Z",
            "url": "https://files.pythonhosted.org/packages/38/89/90718772f7d27f6445a01e106231580a3b794ce9fa411717af8b3ebfe3f9/prelude_parser-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e64230f8a074692cc4da9664d39af11af5d846466049017bf7c4e5710c5324e",
                "md5": "6aa954989a0498f983882c1277badb39",
                "sha256": "076cbf8ab7e9b96ff962a90d8e36d15d69bbd2d895367438d387670f79705609"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6aa954989a0498f983882c1277badb39",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 401680,
            "upload_time": "2024-12-18T15:50:34",
            "upload_time_iso_8601": "2024-12-18T15:50:34.791392Z",
            "url": "https://files.pythonhosted.org/packages/3e/64/230f8a074692cc4da9664d39af11af5d846466049017bf7c4e5710c5324e/prelude_parser-0.12.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf6c13d6831f79d78b7e409e7718d922c137273f7ba9ecff58dca3519a6aa68",
                "md5": "30ccf33548310dfc171122f0752c552a",
                "sha256": "befbfa6ed369531714bef4d13787d8ad76cdc4cdb728ad2a19decbf1bbd67c70"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "30ccf33548310dfc171122f0752c552a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 424070,
            "upload_time": "2024-12-18T15:50:26",
            "upload_time_iso_8601": "2024-12-18T15:50:26.792972Z",
            "url": "https://files.pythonhosted.org/packages/ab/f6/c13d6831f79d78b7e409e7718d922c137273f7ba9ecff58dca3519a6aa68/prelude_parser-0.12.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db51b8d780dff3e051941c861d72eac12f09898d840013c6f3840a59952227cb",
                "md5": "e95527889c310c2595a3b31ca83f27c8",
                "sha256": "4cb50db6adac781d7ce93b324f9d588433132b18d5ea5d0006d3b32cb9de1644"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e95527889c310c2595a3b31ca83f27c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 542560,
            "upload_time": "2024-12-18T15:50:20",
            "upload_time_iso_8601": "2024-12-18T15:50:20.631508Z",
            "url": "https://files.pythonhosted.org/packages/db/51/b8d780dff3e051941c861d72eac12f09898d840013c6f3840a59952227cb/prelude_parser-0.12.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da7740392928f12c021e8e3baecafdeaf3a0dd4fb0bac5dc71d4d1ca0149146b",
                "md5": "3f951c69ab06ccdb3ae61980bda48673",
                "sha256": "4be9faade39be76e684675659b3b38ba70ca4a08152a0aa1de49b38b10cc5e23"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3f951c69ab06ccdb3ae61980bda48673",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 526447,
            "upload_time": "2024-12-18T15:50:14",
            "upload_time_iso_8601": "2024-12-18T15:50:14.069198Z",
            "url": "https://files.pythonhosted.org/packages/da/77/40392928f12c021e8e3baecafdeaf3a0dd4fb0bac5dc71d4d1ca0149146b/prelude_parser-0.12.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c4cdab1048f8b7714aab25dec0d139db17c5f087981405cb846e32617bb1281",
                "md5": "c28cc76599d065b7b7347807ad979e79",
                "sha256": "61ca1b93f467cef624dfdd48f07d0fe46473fb0a233513ce58b105beef287017"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c28cc76599d065b7b7347807ad979e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 579641,
            "upload_time": "2024-12-18T15:48:53",
            "upload_time_iso_8601": "2024-12-18T15:48:53.481920Z",
            "url": "https://files.pythonhosted.org/packages/9c/4c/dab1048f8b7714aab25dec0d139db17c5f087981405cb846e32617bb1281/prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e897cf1f9cde844cf03d3b73c2c99ed2ff3c6b7385b821982fa3eb3ac11e9bb",
                "md5": "ce37393651b2ba4538f43b3adb896241",
                "sha256": "03b41d6f6855e7b277ec0ba6817b8b006eb407dacbcf928cc321a6b33f5ff858"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ce37393651b2ba4538f43b3adb896241",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 588009,
            "upload_time": "2024-12-18T15:49:11",
            "upload_time_iso_8601": "2024-12-18T15:49:11.517469Z",
            "url": "https://files.pythonhosted.org/packages/9e/89/7cf1f9cde844cf03d3b73c2c99ed2ff3c6b7385b821982fa3eb3ac11e9bb/prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8aa9f5b80acfc74a76ca6ab7bbbf70651cb11c4a9908f381c77a852bc79fab41",
                "md5": "e1b0fe19a130375ade1e0ea845f81b58",
                "sha256": "002c1330e8053c3e6adc7d44457830085dd784377e582d2076d0fad68985c088"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e1b0fe19a130375ade1e0ea845f81b58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 644919,
            "upload_time": "2024-12-18T15:49:23",
            "upload_time_iso_8601": "2024-12-18T15:49:23.960927Z",
            "url": "https://files.pythonhosted.org/packages/8a/a9/f5b80acfc74a76ca6ab7bbbf70651cb11c4a9908f381c77a852bc79fab41/prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43d6d42d57a96965cc5da1836712db1e3163ee5bab5c6a79c2047f02e783ee37",
                "md5": "38347b75bf82526db53a167c1669a872",
                "sha256": "ed66bea4a61e4d77cd334f5fd6450a5f922e52e90fdfd9cec12ca9f4d2a05f44"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "38347b75bf82526db53a167c1669a872",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 669211,
            "upload_time": "2024-12-18T15:49:40",
            "upload_time_iso_8601": "2024-12-18T15:49:40.641126Z",
            "url": "https://files.pythonhosted.org/packages/43/d6/d42d57a96965cc5da1836712db1e3163ee5bab5c6a79c2047f02e783ee37/prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd03048bcc2f65a2d528824e7e55b0da9f3f208357b5e7d3030c3652dcb9c9b6",
                "md5": "b9505f48a382c1b2b9ac2559629986d0",
                "sha256": "9cf2cf216a76e162a774627c61490a1ef02425d983402d109ba9c69e13ffc78b"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9505f48a382c1b2b9ac2559629986d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 590658,
            "upload_time": "2024-12-18T15:50:05",
            "upload_time_iso_8601": "2024-12-18T15:50:05.249032Z",
            "url": "https://files.pythonhosted.org/packages/fd/03/048bcc2f65a2d528824e7e55b0da9f3f208357b5e7d3030c3652dcb9c9b6/prelude_parser-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a23407111d3ad1ad35eef526171fc970bb44242634ebcd65ccab612226c93aba",
                "md5": "749277d91be2e2d896b6fe7c8337573a",
                "sha256": "35f8b03db71ab840638f59fe2b07f0b95ccb2050fbe52aa3d52f470f0bbe72ea"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "749277d91be2e2d896b6fe7c8337573a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 628468,
            "upload_time": "2024-12-18T15:49:52",
            "upload_time_iso_8601": "2024-12-18T15:49:52.627210Z",
            "url": "https://files.pythonhosted.org/packages/a2/34/07111d3ad1ad35eef526171fc970bb44242634ebcd65ccab612226c93aba/prelude_parser-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "733aaeaf6c6fc012240a0a12329bf3b7c02deb98176b25cfb5fc59d6d7b03de1",
                "md5": "da8db4cfdc567b82e87516157e6268cd",
                "sha256": "e237276c5d1f9c41a4c1dae82ed6a644246532b4e7b99a6d3d5377c11a54367d"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "da8db4cfdc567b82e87516157e6268cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 403554,
            "upload_time": "2024-12-18T15:50:36",
            "upload_time_iso_8601": "2024-12-18T15:50:36.562415Z",
            "url": "https://files.pythonhosted.org/packages/73/3a/aeaf6c6fc012240a0a12329bf3b7c02deb98176b25cfb5fc59d6d7b03de1/prelude_parser-0.12.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b47a3d46cc2bcc04787688c2ed9f28e85b4f06d0b21885689aabaa05e0978c0",
                "md5": "c272acc0adb12c29a8b65a7e3a680a39",
                "sha256": "16f77d1f2a911e05e2b2cfae951e3d7c6f8404fc2597f2ddba931913386992e7"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c272acc0adb12c29a8b65a7e3a680a39",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 423653,
            "upload_time": "2024-12-18T15:50:28",
            "upload_time_iso_8601": "2024-12-18T15:50:28.592408Z",
            "url": "https://files.pythonhosted.org/packages/2b/47/a3d46cc2bcc04787688c2ed9f28e85b4f06d0b21885689aabaa05e0978c0/prelude_parser-0.12.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53224cd61e79009809de7558c4f5c5c8d3c4da3af3833b7e656f912e830c3b22",
                "md5": "ace563c9c02d795f8d07d07eedbb97b0",
                "sha256": "881e9e341ecdaada8032bde85aa92aaf9ea8f4451824a684f645db2a86fe5c66"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ace563c9c02d795f8d07d07eedbb97b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 542089,
            "upload_time": "2024-12-18T15:50:22",
            "upload_time_iso_8601": "2024-12-18T15:50:22.279743Z",
            "url": "https://files.pythonhosted.org/packages/53/22/4cd61e79009809de7558c4f5c5c8d3c4da3af3833b7e656f912e830c3b22/prelude_parser-0.12.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eebbb81ad8716596239f256b88b356d0de49a36184ee42c38e053917bf580ac8",
                "md5": "f28ababfd3c2838505194d60e4564c8f",
                "sha256": "157bb269a8d67856880adfb70c32f6d228884ab5b6f3d20533898b4a30af6c63"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f28ababfd3c2838505194d60e4564c8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 526203,
            "upload_time": "2024-12-18T15:50:15",
            "upload_time_iso_8601": "2024-12-18T15:50:15.684693Z",
            "url": "https://files.pythonhosted.org/packages/ee/bb/b81ad8716596239f256b88b356d0de49a36184ee42c38e053917bf580ac8/prelude_parser-0.12.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee34ac8977aa983b9a3622392a2a8f2a7a8f08db0bae2b74f26d68a18112110b",
                "md5": "d4062a62ac05e034b08db8c21bc78c9b",
                "sha256": "c55c658efc89d2aa5108dfc0d48a4d59575cd81b411982af4dbbc6e7dccbf74f"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4062a62ac05e034b08db8c21bc78c9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 579042,
            "upload_time": "2024-12-18T15:48:56",
            "upload_time_iso_8601": "2024-12-18T15:48:56.456103Z",
            "url": "https://files.pythonhosted.org/packages/ee/34/ac8977aa983b9a3622392a2a8f2a7a8f08db0bae2b74f26d68a18112110b/prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbe5ec78e93e73407d9dd15465816c80998618c854b1a4f5f76d6231a2ef25d3",
                "md5": "23017fe203cae27e71e587ac6d39499b",
                "sha256": "94eda66308678dff4f25ae67fc19ef98aa913b291eb863305b2c87f0c945ddf3"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "23017fe203cae27e71e587ac6d39499b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 587207,
            "upload_time": "2024-12-18T15:49:14",
            "upload_time_iso_8601": "2024-12-18T15:49:14.829941Z",
            "url": "https://files.pythonhosted.org/packages/fb/e5/ec78e93e73407d9dd15465816c80998618c854b1a4f5f76d6231a2ef25d3/prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6d464bdc1ac3052a1eba2ad6262e2ad71532e54cd9de53f8b9cc785d53e59ef",
                "md5": "2a397ab1a696f36ddde0c59b2ef9b381",
                "sha256": "cb098aeba874f8a7b6f57e262bd66f9dff0e9be428494545af76d8dbe60cedc9"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2a397ab1a696f36ddde0c59b2ef9b381",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 644542,
            "upload_time": "2024-12-18T15:49:27",
            "upload_time_iso_8601": "2024-12-18T15:49:27.067389Z",
            "url": "https://files.pythonhosted.org/packages/c6/d4/64bdc1ac3052a1eba2ad6262e2ad71532e54cd9de53f8b9cc785d53e59ef/prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dee474b3bfd41454b7db8d173606bf41a09ae2581355d995bee5c49d54358ce1",
                "md5": "ed2aff1a603ef8438562dfdd64963e68",
                "sha256": "a147625d2312b5671ac040b4437a5e1c394f164e0e1b91633efdefc668543aed"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ed2aff1a603ef8438562dfdd64963e68",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 667956,
            "upload_time": "2024-12-18T15:49:42",
            "upload_time_iso_8601": "2024-12-18T15:49:42.422961Z",
            "url": "https://files.pythonhosted.org/packages/de/e4/74b3bfd41454b7db8d173606bf41a09ae2581355d995bee5c49d54358ce1/prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b09e22eb830da8ea815d76c7c182353e0a53b5b2e8350c63e6f10b4c7005f446",
                "md5": "ee3f5823dff2161ec3254b6a3df9bf30",
                "sha256": "81427c4361a4d9e0426781217c588246ddab0e5e82933162320196659b0e2197"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee3f5823dff2161ec3254b6a3df9bf30",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 590471,
            "upload_time": "2024-12-18T15:50:06",
            "upload_time_iso_8601": "2024-12-18T15:50:06.868365Z",
            "url": "https://files.pythonhosted.org/packages/b0/9e/22eb830da8ea815d76c7c182353e0a53b5b2e8350c63e6f10b4c7005f446/prelude_parser-0.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "093341df430a723f043e9908e3bd28986638bda136e461339c23daa17f18f016",
                "md5": "7251baeaf839154e4a63ee559e2adcdb",
                "sha256": "6a6a1ab34d9fe5b25fe5a405d0deeaabc61cdf14f0f26589e71f629a311e1528"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7251baeaf839154e4a63ee559e2adcdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 627903,
            "upload_time": "2024-12-18T15:49:56",
            "upload_time_iso_8601": "2024-12-18T15:49:56.698696Z",
            "url": "https://files.pythonhosted.org/packages/09/33/41df430a723f043e9908e3bd28986638bda136e461339c23daa17f18f016/prelude_parser-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9197e4ec43f76898f745438184d9e1256a9007b0bba8a1caac587152168d4a8d",
                "md5": "cbbc289498bce58c2e4b573848e5cd82",
                "sha256": "dfd0bfe5c7e1626556d6e356a2852422c4f718efbd1925731f595c49bf3c7f6a"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbbc289498bce58c2e4b573848e5cd82",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 578126,
            "upload_time": "2024-12-18T15:48:58",
            "upload_time_iso_8601": "2024-12-18T15:48:58.398608Z",
            "url": "https://files.pythonhosted.org/packages/91/97/e4ec43f76898f745438184d9e1256a9007b0bba8a1caac587152168d4a8d/prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3cc61523d8291f0e3d619b1d55c67ce983f8fd3df6e5e54bfcb3667f346bbb6",
                "md5": "c36b79fdffa47f7a74ce578c8492682a",
                "sha256": "cbd4905a21e7481958d16fa6d6800e2ac3cf18270803601b4bca12625e869ed1"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c36b79fdffa47f7a74ce578c8492682a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 584682,
            "upload_time": "2024-12-18T15:49:16",
            "upload_time_iso_8601": "2024-12-18T15:49:16.619743Z",
            "url": "https://files.pythonhosted.org/packages/b3/cc/61523d8291f0e3d619b1d55c67ce983f8fd3df6e5e54bfcb3667f346bbb6/prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9173c51bb63f0bae74dfcf6affdb51160ddb329016b91c4f6ae49fe2ae996961",
                "md5": "6d4513dc2e381e0c9ca37507e6d98121",
                "sha256": "6a1f4b9adfe23fcc311870e29551eb9fa3c04e1b8cdf7db95b1d6051ded64f66"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6d4513dc2e381e0c9ca37507e6d98121",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 644916,
            "upload_time": "2024-12-18T15:49:30",
            "upload_time_iso_8601": "2024-12-18T15:49:30.682465Z",
            "url": "https://files.pythonhosted.org/packages/91/73/c51bb63f0bae74dfcf6affdb51160ddb329016b91c4f6ae49fe2ae996961/prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5629b23e72832e30c5c333ba4e874826bc74b71ee75c2c3009289c42b168e5b7",
                "md5": "7745e084ea6a2475f31c3ab261bd429f",
                "sha256": "4bb0bfa3204a8ad0f9c117fb9a35e6f0479cf7736f49bdf7651d176a1c0fd267"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7745e084ea6a2475f31c3ab261bd429f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 668699,
            "upload_time": "2024-12-18T15:49:44",
            "upload_time_iso_8601": "2024-12-18T15:49:44.457009Z",
            "url": "https://files.pythonhosted.org/packages/56/29/b23e72832e30c5c333ba4e874826bc74b71ee75c2c3009289c42b168e5b7/prelude_parser-0.12.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1be5a0b8a48d509ccb584937e069b4b3379189025c88bf2d1e3e01e5be59a1a9",
                "md5": "f2c2f1c73780185864885b8017d1d038",
                "sha256": "5bce0a3392425bf8351b9ce5852daf833a4f1c709118033778a53c9128525333"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f2c2f1c73780185864885b8017d1d038",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 582614,
            "upload_time": "2024-12-18T15:49:02",
            "upload_time_iso_8601": "2024-12-18T15:49:02.648238Z",
            "url": "https://files.pythonhosted.org/packages/1b/e5/a0b8a48d509ccb584937e069b4b3379189025c88bf2d1e3e01e5be59a1a9/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4efd206d7c2c53578e9ee4d341d04bc36dc91e20d4cf0c13efec655e50cf5422",
                "md5": "9d9cc15962fff4d8c74cd45a8533a836",
                "sha256": "7d32eaf6f036b33988968f59fc9d6628a578a2b1e5cf99c29d6a22517bd29b66"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9d9cc15962fff4d8c74cd45a8533a836",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 588814,
            "upload_time": "2024-12-18T15:49:18",
            "upload_time_iso_8601": "2024-12-18T15:49:18.350361Z",
            "url": "https://files.pythonhosted.org/packages/4e/fd/206d7c2c53578e9ee4d341d04bc36dc91e20d4cf0c13efec655e50cf5422/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78a1c396168a1cee5a5d1065a9780a59e7394224666338434a3443d37c9b1dca",
                "md5": "7ec4d9d6a5ace61ccb8cd6bb704582d5",
                "sha256": "fb7c356bc12ea2ba877d99e3a0b6c762b7c200484f4d8d6be2fa1e0fc42c5cf1"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7ec4d9d6a5ace61ccb8cd6bb704582d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 648604,
            "upload_time": "2024-12-18T15:49:35",
            "upload_time_iso_8601": "2024-12-18T15:49:35.319342Z",
            "url": "https://files.pythonhosted.org/packages/78/a1/c396168a1cee5a5d1065a9780a59e7394224666338434a3443d37c9b1dca/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1d3118571bfab790b6dace55ea3954105250dbe9e210f71ae975c412d4301f3",
                "md5": "c7ea5c41430185ecef7a27b5b47fa6a0",
                "sha256": "14016eff6434856aedae323cb98bd4e1a1a5fb4bb0fb526e8fe4a9a96fc20fd4"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c7ea5c41430185ecef7a27b5b47fa6a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 671845,
            "upload_time": "2024-12-18T15:49:46",
            "upload_time_iso_8601": "2024-12-18T15:49:46.110625Z",
            "url": "https://files.pythonhosted.org/packages/d1/d3/118571bfab790b6dace55ea3954105250dbe9e210f71ae975c412d4301f3/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "892531511969af0bf5cbd84375b6ee307fd9b8e5137343255e45b23abe8a0ecd",
                "md5": "89f53a35c031e0b94d94906231f97f0a",
                "sha256": "812e05e7d56cc2223f11a0a2f5fcbf2f5e8218d1d6f8a6773762abfac164bc4f"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89f53a35c031e0b94d94906231f97f0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 594850,
            "upload_time": "2024-12-18T15:50:09",
            "upload_time_iso_8601": "2024-12-18T15:50:09.714693Z",
            "url": "https://files.pythonhosted.org/packages/89/25/31511969af0bf5cbd84375b6ee307fd9b8e5137343255e45b23abe8a0ecd/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39d096365c740573005727c9271e737611eed300a8f7e25ddca635cd5bb08e9c",
                "md5": "4f611646d622920420ff87802b68cb0a",
                "sha256": "579788eec3359eb6da95d154d2d28a84440fafacd96ead28f185a12fe715c307"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4f611646d622920420ff87802b68cb0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 631396,
            "upload_time": "2024-12-18T15:50:00",
            "upload_time_iso_8601": "2024-12-18T15:50:00.175157Z",
            "url": "https://files.pythonhosted.org/packages/39/d0/96365c740573005727c9271e737611eed300a8f7e25ddca635cd5bb08e9c/prelude_parser-0.12.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e55d796068059881c8a822cd0956956c4b9d164b6292594c59994bb6be21f23c",
                "md5": "04ad10ca62add04dc39c52362d4f2929",
                "sha256": "f5057436881d4799b2bdd5a66446c5abfd6f2eeb3a884eebd238ed81b3e154ba"
            },
            "downloads": -1,
            "filename": "prelude_parser-0.12.1.tar.gz",
            "has_sig": false,
            "md5_digest": "04ad10ca62add04dc39c52362d4f2929",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 48055,
            "upload_time": "2024-12-18T15:50:23",
            "upload_time_iso_8601": "2024-12-18T15:50:23.970556Z",
            "url": "https://files.pythonhosted.org/packages/e5/5d/796068059881c8a822cd0956956c4b9d164b6292594c59994bb6be21f23c/prelude_parser-0.12.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-18 15:50:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pbs-data-solutions",
    "github_project": "prelude-parser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "prelude-parser"
}
        
Elapsed time: 0.45162s