# 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.9",
"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/47/81/8edd7aae38eecd2cb4ea77832f740f439f9a96313d852140fcf91cc033a3/prelude_parser-0.11.2.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.11.2",
"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": "8e5db91fc96bab24a43b3c2d95e9cc491a2abc4c34076972d29193697bc297c5",
"md5": "51e7fdc57e423120514fa0ead5ffe4f5",
"sha256": "5254c7a1f395df8e29e795274b3fe0dfa0daa7eca7fac6e88e6b892bac48d65d"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "51e7fdc57e423120514fa0ead5ffe4f5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 531709,
"upload_time": "2024-10-15T19:13:57",
"upload_time_iso_8601": "2024-10-15T19:13:57.566032Z",
"url": "https://files.pythonhosted.org/packages/8e/5d/b91fc96bab24a43b3c2d95e9cc491a2abc4c34076972d29193697bc297c5/prelude_parser-0.11.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0421073c8e51b49f72d67795df904e35a6cc9a3b488cbae547adbeec877cd664",
"md5": "a92b196c8ad714d84bb17a76707b715c",
"sha256": "f8002d7dda033b5d4820987c637290501d51c1624d5e8c7c601fb0b2ba5baa99"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a92b196c8ad714d84bb17a76707b715c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 517151,
"upload_time": "2024-10-15T19:13:51",
"upload_time_iso_8601": "2024-10-15T19:13:51.091078Z",
"url": "https://files.pythonhosted.org/packages/04/21/073c8e51b49f72d67795df904e35a6cc9a3b488cbae547adbeec877cd664/prelude_parser-0.11.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0457d1e853fa93396dde1d09058b19a7799372572f5dd10e0a888de55167ca6",
"md5": "bd5c8e2905add6e9fd3a82969cf4d0ba",
"sha256": "ccce82ca59a1f15832554a992809e38b2c1e382243d9ca573c651073f332d9cd"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd5c8e2905add6e9fd3a82969cf4d0ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 590242,
"upload_time": "2024-10-15T19:12:54",
"upload_time_iso_8601": "2024-10-15T19:12:54.891480Z",
"url": "https://files.pythonhosted.org/packages/d0/45/7d1e853fa93396dde1d09058b19a7799372572f5dd10e0a888de55167ca6/prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "573885f005c9e15caa90dc229bf6ede7a515c21cb107cd0205a5c7f08830ec48",
"md5": "ca4ae063c187f627bca21fac0ea05be7",
"sha256": "d10cb78490076246c212789f7365b13dc279c141eb8aa8822e75975da78a05a8"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ca4ae063c187f627bca21fac0ea05be7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 585805,
"upload_time": "2024-10-15T19:13:05",
"upload_time_iso_8601": "2024-10-15T19:13:05.047545Z",
"url": "https://files.pythonhosted.org/packages/57/38/85f005c9e15caa90dc229bf6ede7a515c21cb107cd0205a5c7f08830ec48/prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "552f7d864e58c5ef1407e568b7697b3798eba0b5daa6def8e09d57757cd87cde",
"md5": "8b9d43a246129a150028638152336568",
"sha256": "61306b830e3f7a9abb9ef54b3052715e5edb5866cbf679e6209bcb90935c0446"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b9d43a246129a150028638152336568",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 636347,
"upload_time": "2024-10-15T19:13:14",
"upload_time_iso_8601": "2024-10-15T19:13:14.100228Z",
"url": "https://files.pythonhosted.org/packages/55/2f/7d864e58c5ef1407e568b7697b3798eba0b5daa6def8e09d57757cd87cde/prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d69681b8db8e1d9dfea8a99e36c7e1bc145864d0b396cf8ee4622af57cbb1fcd",
"md5": "c8f96a8ad8a2e8e61195b66002eccfa5",
"sha256": "e9cbff7ba12c66ef3f8cc6073a942e6e8334cb379cb3643f4013d41be76ad636"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c8f96a8ad8a2e8e61195b66002eccfa5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 658312,
"upload_time": "2024-10-15T19:13:24",
"upload_time_iso_8601": "2024-10-15T19:13:24.548797Z",
"url": "https://files.pythonhosted.org/packages/d6/96/81b8db8e1d9dfea8a99e36c7e1bc145864d0b396cf8ee4622af57cbb1fcd/prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12cfc66bf59e25ac1106bacf016af62a77dca667ea904fb915c64e7d722b3ff7",
"md5": "30e769e2136016aea35bfddd7bbc2b21",
"sha256": "bf80b42df6d3baeba8a8c5e056ac71c80e9de59714cfb0ef74a3948449e706ca"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "30e769e2136016aea35bfddd7bbc2b21",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 580374,
"upload_time": "2024-10-15T19:13:42",
"upload_time_iso_8601": "2024-10-15T19:13:42.897886Z",
"url": "https://files.pythonhosted.org/packages/12/cf/c66bf59e25ac1106bacf016af62a77dca667ea904fb915c64e7d722b3ff7/prelude_parser-0.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1bf33cf3f79cda876ec14ab377caacab438bef6c24f6c5307ef4db395bb652a",
"md5": "64c5cf7da6ba495195e4f9cf7f3549d7",
"sha256": "89fde910472aa66eb56ff9d8ed5c57f943ad831c969aca894a99bd2760f900b0"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "64c5cf7da6ba495195e4f9cf7f3549d7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 617777,
"upload_time": "2024-10-15T19:13:33",
"upload_time_iso_8601": "2024-10-15T19:13:33.291294Z",
"url": "https://files.pythonhosted.org/packages/e1/bf/33cf3f79cda876ec14ab377caacab438bef6c24f6c5307ef4db395bb652a/prelude_parser-0.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e344e55b864ff8846d616d66ceface3e1fce765ffe5611498d2f7c9e1ca3b4a",
"md5": "fe540daa99f66c73cfe7aad151bf5b79",
"sha256": "4a18db86a691dbaab667e10a91434575b0aefd86cbfdd90c35009794d6311f88"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "fe540daa99f66c73cfe7aad151bf5b79",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 391122,
"upload_time": "2024-10-15T19:14:09",
"upload_time_iso_8601": "2024-10-15T19:14:09.376297Z",
"url": "https://files.pythonhosted.org/packages/7e/34/4e55b864ff8846d616d66ceface3e1fce765ffe5611498d2f7c9e1ca3b4a/prelude_parser-0.11.2-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a7bf0c4328f515527a78efc20f1463c8a736b4dc76ff1af4f311e71136b87b3",
"md5": "f17291f61030e2a2b9a68d5736620444",
"sha256": "4c1cb643b11f156b173a9c6cb7f8ccd8310bd8de37db3d842ba51e2c00623e2e"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "f17291f61030e2a2b9a68d5736620444",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 415262,
"upload_time": "2024-10-15T19:14:04",
"upload_time_iso_8601": "2024-10-15T19:14:04.196475Z",
"url": "https://files.pythonhosted.org/packages/0a/7b/f0c4328f515527a78efc20f1463c8a736b4dc76ff1af4f311e71136b87b3/prelude_parser-0.11.2-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d68b034b01e75002de38c2ec44be248e85ebcea97f446dccc40e84a61a18d867",
"md5": "a34af5cc252ccd973235a6bcc827c459",
"sha256": "9e18b787827a62a30b58653bc685659c4d4d7472fc3f9ed867e5d0e1ca89e357"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a34af5cc252ccd973235a6bcc827c459",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 531156,
"upload_time": "2024-10-15T19:13:58",
"upload_time_iso_8601": "2024-10-15T19:13:58.940151Z",
"url": "https://files.pythonhosted.org/packages/d6/8b/034b01e75002de38c2ec44be248e85ebcea97f446dccc40e84a61a18d867/prelude_parser-0.11.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a5fa49f837a069dce445f91cd3a7a8ed538b19ad471ee9658899bf2777d1c0d",
"md5": "d7e9825192eb79681bb57c5f12e7903c",
"sha256": "1c2ffa5f8158cc5fb48da8920a795b4943d988c5d526f2815969617d49bcdc9a"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d7e9825192eb79681bb57c5f12e7903c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 516769,
"upload_time": "2024-10-15T19:13:52",
"upload_time_iso_8601": "2024-10-15T19:13:52.449746Z",
"url": "https://files.pythonhosted.org/packages/3a/5f/a49f837a069dce445f91cd3a7a8ed538b19ad471ee9658899bf2777d1c0d/prelude_parser-0.11.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54d947786e12f26839293501899cdef988ce31a24ea89de8ed8017df365815a6",
"md5": "cdbdfc4b2d45e23db4df9d4cf7109093",
"sha256": "ccce7138a18a0bef244acac5aaa6237597c98ac34143b0a335e1e9eca46e1fdd"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cdbdfc4b2d45e23db4df9d4cf7109093",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 589675,
"upload_time": "2024-10-15T19:12:56",
"upload_time_iso_8601": "2024-10-15T19:12:56.297377Z",
"url": "https://files.pythonhosted.org/packages/54/d9/47786e12f26839293501899cdef988ce31a24ea89de8ed8017df365815a6/prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7965169959f894a6f09a319bb19ac6e7ff4ba46b4644db84cb366e83d02b8da2",
"md5": "ea1a4a113e14c0c9cc66815efdebc4bc",
"sha256": "897da7d7fc3ecac263da678a74b98c68fba8a966d35b2d9a8c433104a09a1db3"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ea1a4a113e14c0c9cc66815efdebc4bc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 585609,
"upload_time": "2024-10-15T19:13:06",
"upload_time_iso_8601": "2024-10-15T19:13:06.991739Z",
"url": "https://files.pythonhosted.org/packages/79/65/169959f894a6f09a319bb19ac6e7ff4ba46b4644db84cb366e83d02b8da2/prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36b40cb6a9a3786afbee197a232cf07aac9df74bc37f4994e82fad5d65a12923",
"md5": "43a63b640efd5f7ec5d8bf054e0c231c",
"sha256": "7c6f985858a9f14f4b71669152d07e19ec7ab1145dbdce4abc402687d359f6e3"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "43a63b640efd5f7ec5d8bf054e0c231c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 637698,
"upload_time": "2024-10-15T19:13:15",
"upload_time_iso_8601": "2024-10-15T19:13:15.525145Z",
"url": "https://files.pythonhosted.org/packages/36/b4/0cb6a9a3786afbee197a232cf07aac9df74bc37f4994e82fad5d65a12923/prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99cf853fa745c789b60271064213eebd98a247a216db61fb9dc4c91ddfe97b57",
"md5": "77080ae80b6ac72eeac4d90ef9491314",
"sha256": "fc33468b5bbc77dbec15a7a83dcf5bb20ac31817d37c60d4690230587d9ad438"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "77080ae80b6ac72eeac4d90ef9491314",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 658452,
"upload_time": "2024-10-15T19:13:25",
"upload_time_iso_8601": "2024-10-15T19:13:25.908139Z",
"url": "https://files.pythonhosted.org/packages/99/cf/853fa745c789b60271064213eebd98a247a216db61fb9dc4c91ddfe97b57/prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f82f4530eba43681be7f673de9bcb3eec1620ef42feb4722b2cdc52660520111",
"md5": "e01f371dac22b549aeaaefbd6b3d11a6",
"sha256": "757dbad43904655cbed63f7d4457fe9475614a7cfa882137e3aa1fda77e50992"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e01f371dac22b549aeaaefbd6b3d11a6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 580118,
"upload_time": "2024-10-15T19:13:44",
"upload_time_iso_8601": "2024-10-15T19:13:44.210238Z",
"url": "https://files.pythonhosted.org/packages/f8/2f/4530eba43681be7f673de9bcb3eec1620ef42feb4722b2cdc52660520111/prelude_parser-0.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97e4cc63ca07e6921b07e5407ecef170a1c64d04b7e43058837601c21790fbe5",
"md5": "f910de5dbc3eabd98141e59e334e1add",
"sha256": "fa4c14236cbc15baeb0286ec54847322165f54105853829f467c4a7cb3a672a0"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f910de5dbc3eabd98141e59e334e1add",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 617456,
"upload_time": "2024-10-15T19:13:34",
"upload_time_iso_8601": "2024-10-15T19:13:34.522292Z",
"url": "https://files.pythonhosted.org/packages/97/e4/cc63ca07e6921b07e5407ecef170a1c64d04b7e43058837601c21790fbe5/prelude_parser-0.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "449ddc467339261da4a9254193516aa817fbab51cab2b53e6e7036309bf83b27",
"md5": "14b18eab7b8d9652aec982dd2940e3ce",
"sha256": "53c34474b1dfe4117ec185cb32dbaa1ba0a39a3cc1a03cdefd82f5773abc2c8b"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "14b18eab7b8d9652aec982dd2940e3ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 390574,
"upload_time": "2024-10-15T19:14:10",
"upload_time_iso_8601": "2024-10-15T19:14:10.740198Z",
"url": "https://files.pythonhosted.org/packages/44/9d/dc467339261da4a9254193516aa817fbab51cab2b53e6e7036309bf83b27/prelude_parser-0.11.2-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0120374743abd30d6f0a84839e9d4e7f620847b9d14188ae94bf12001553d64",
"md5": "78df20db77ed2c67b09c4afc92958fab",
"sha256": "f9862bb97e1ab37396aab8b2a9262fc5ec36dec5e07affb0a1a9b6b26ecb18f1"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "78df20db77ed2c67b09c4afc92958fab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 414058,
"upload_time": "2024-10-15T19:14:05",
"upload_time_iso_8601": "2024-10-15T19:14:05.497022Z",
"url": "https://files.pythonhosted.org/packages/d0/12/0374743abd30d6f0a84839e9d4e7f620847b9d14188ae94bf12001553d64/prelude_parser-0.11.2-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21dc9f83dd9ab4954c70635472d4bfec4f0b4bd1a342e0689666d252e8bf5b85",
"md5": "7eee55d279c6feb93878bfa83ad86a15",
"sha256": "fbca6963506669132fcd9a2422cc6011a6f7215a61d9ac43119dbc041ec1a950"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "7eee55d279c6feb93878bfa83ad86a15",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 529900,
"upload_time": "2024-10-15T19:14:00",
"upload_time_iso_8601": "2024-10-15T19:14:00.179259Z",
"url": "https://files.pythonhosted.org/packages/21/dc/9f83dd9ab4954c70635472d4bfec4f0b4bd1a342e0689666d252e8bf5b85/prelude_parser-0.11.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e94c4c706d588fe9624719492358218c5238ae2d2e763e62c245458fab3af234",
"md5": "4ed3677ae28bc427783b7330bf420c01",
"sha256": "ce6e46e1a2dcd059b6c46cbf7f4579acb94e8c7c0a72df5f9884b423b22f23d4"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4ed3677ae28bc427783b7330bf420c01",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 516202,
"upload_time": "2024-10-15T19:13:54",
"upload_time_iso_8601": "2024-10-15T19:13:54.095079Z",
"url": "https://files.pythonhosted.org/packages/e9/4c/4c706d588fe9624719492358218c5238ae2d2e763e62c245458fab3af234/prelude_parser-0.11.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bed6bae27d737aa86c15190c54afc36770cd8469f5d4821898ba784d2e1f4e0",
"md5": "67abba8b28f70667b057bf3bcbcf16a3",
"sha256": "6af9235d1f7429691a54b505daee1c32ecb90cbd47c98624bf1ebe3a59645e9f"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "67abba8b28f70667b057bf3bcbcf16a3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 588552,
"upload_time": "2024-10-15T19:12:58",
"upload_time_iso_8601": "2024-10-15T19:12:58.277698Z",
"url": "https://files.pythonhosted.org/packages/3b/ed/6bae27d737aa86c15190c54afc36770cd8469f5d4821898ba784d2e1f4e0/prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8f2916405427afc2532fe7a330e04a54af07aee6a43d468fc8db0959283ca72",
"md5": "c09a78e6bedf93f8eaacca6f4cd954ba",
"sha256": "b2e4f2dbea2eeaf2f7cd5e1f33d83a7a332a71f734f80e6db5882b760452defe"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c09a78e6bedf93f8eaacca6f4cd954ba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 586036,
"upload_time": "2024-10-15T19:13:08",
"upload_time_iso_8601": "2024-10-15T19:13:08.317751Z",
"url": "https://files.pythonhosted.org/packages/f8/f2/916405427afc2532fe7a330e04a54af07aee6a43d468fc8db0959283ca72/prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9bd37afed40aba5c4bddf92608197671e9c951cf7581dfff1e26f93395a9711",
"md5": "5373a219ce372aad7b5aefd148d5a450",
"sha256": "c8609c0f8e8ba764430ddafc5aef7480e66a56eefc3337b6997aef1a6a4cef36"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5373a219ce372aad7b5aefd148d5a450",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 635044,
"upload_time": "2024-10-15T19:13:17",
"upload_time_iso_8601": "2024-10-15T19:13:17.533364Z",
"url": "https://files.pythonhosted.org/packages/b9/bd/37afed40aba5c4bddf92608197671e9c951cf7581dfff1e26f93395a9711/prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80d8703c7279170a94ffc11a068a29d6d3d78dc3c04197220392e4e87c159742",
"md5": "8ea0dede8f8d679e9f78f9bf30289815",
"sha256": "50fb664db25a34ed09c1e46c1f1a794922447aa2ce834c24125eafa65add7c6c"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8ea0dede8f8d679e9f78f9bf30289815",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 657648,
"upload_time": "2024-10-15T19:13:27",
"upload_time_iso_8601": "2024-10-15T19:13:27.757761Z",
"url": "https://files.pythonhosted.org/packages/80/d8/703c7279170a94ffc11a068a29d6d3d78dc3c04197220392e4e87c159742/prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11f2b01618c756f5f188aa2d4408e97b4de1c45b8519bc894b1b71a72d25c282",
"md5": "1dbd472886c04be0f8713c0730061d9b",
"sha256": "d9dd954582861e681d3c065083adcd8d70b9b5fef0ac3ffec0d40bcabc2ffeb3"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1dbd472886c04be0f8713c0730061d9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 580109,
"upload_time": "2024-10-15T19:13:45",
"upload_time_iso_8601": "2024-10-15T19:13:45.555660Z",
"url": "https://files.pythonhosted.org/packages/11/f2/b01618c756f5f188aa2d4408e97b4de1c45b8519bc894b1b71a72d25c282/prelude_parser-0.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2589b54240321dea047f2f3b9df8e026fd52c7e46553be4a52428e71e51906ea",
"md5": "15c0d4852995574f6fa38c198d09335e",
"sha256": "ecc5b3015db56067315df4e91d5783f5a112ef353bf19678cfc62e13bc86b176"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "15c0d4852995574f6fa38c198d09335e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 617230,
"upload_time": "2024-10-15T19:13:36",
"upload_time_iso_8601": "2024-10-15T19:13:36.635658Z",
"url": "https://files.pythonhosted.org/packages/25/89/b54240321dea047f2f3b9df8e026fd52c7e46553be4a52428e71e51906ea/prelude_parser-0.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b89396d5f854a2220276a0f8b87a4de06c5f0d3b263946ccd14eaddf92e21947",
"md5": "796f4685d9e09f95ac4706cb00001645",
"sha256": "033dccf211c5f930b8e595f143fc9d71b228abe1de8fceab7501d2055ff4cc69"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "796f4685d9e09f95ac4706cb00001645",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 391126,
"upload_time": "2024-10-15T19:14:11",
"upload_time_iso_8601": "2024-10-15T19:14:11.918212Z",
"url": "https://files.pythonhosted.org/packages/b8/93/96d5f854a2220276a0f8b87a4de06c5f0d3b263946ccd14eaddf92e21947/prelude_parser-0.11.2-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4bd3ec959a593f00020124bf5ae57a0ae313e179323c831b77b059e24495c7bb",
"md5": "6ea246caa7bd1a792ea97902f89a7ec7",
"sha256": "e8263293c599ce08b3bc5dad2fec53686c219fc737d5e242cc3c3f0643f5e6e0"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "6ea246caa7bd1a792ea97902f89a7ec7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 415049,
"upload_time": "2024-10-15T19:14:06",
"upload_time_iso_8601": "2024-10-15T19:14:06.741927Z",
"url": "https://files.pythonhosted.org/packages/4b/d3/ec959a593f00020124bf5ae57a0ae313e179323c831b77b059e24495c7bb/prelude_parser-0.11.2-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "944b21a9e71397a33afa3f76390b087b6b74a1435c4abb0a1cdba24578354e9a",
"md5": "2a09120a721003233f7b62a42a0a7b13",
"sha256": "34b34c82d40d97fcdb0b493fc15e6245cbbe515ca753125412ed3b3ee6b16dbf"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2a09120a721003233f7b62a42a0a7b13",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 531608,
"upload_time": "2024-10-15T19:14:02",
"upload_time_iso_8601": "2024-10-15T19:14:02.067446Z",
"url": "https://files.pythonhosted.org/packages/94/4b/21a9e71397a33afa3f76390b087b6b74a1435c4abb0a1cdba24578354e9a/prelude_parser-0.11.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "931cab3426266001540d16c9c692efd3b136e27767d96c603943d7b79af54f49",
"md5": "80ff181c877f28b4368cf683eca219a9",
"sha256": "f4c80b46c8f8e5f2ed9eb985e5c369ee0110b84368d77c6ab7a9cfa2a4efe101"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "80ff181c877f28b4368cf683eca219a9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 517190,
"upload_time": "2024-10-15T19:13:56",
"upload_time_iso_8601": "2024-10-15T19:13:56.105993Z",
"url": "https://files.pythonhosted.org/packages/93/1c/ab3426266001540d16c9c692efd3b136e27767d96c603943d7b79af54f49/prelude_parser-0.11.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f01cab095d82784b005b6fa0f22abf37e34b63b51e8bd8a4c82782c531a381a",
"md5": "5a1ef8ced7949c450e97050c104600d1",
"sha256": "e1b33e970fa502bcf676063af4bf40adc4b8fbb6291ec8dad06c0b647b412434"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5a1ef8ced7949c450e97050c104600d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 590079,
"upload_time": "2024-10-15T19:13:00",
"upload_time_iso_8601": "2024-10-15T19:13:00.010102Z",
"url": "https://files.pythonhosted.org/packages/1f/01/cab095d82784b005b6fa0f22abf37e34b63b51e8bd8a4c82782c531a381a/prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d2e16f6890d4ea0db158195c2f1fb8889a738e86203c48d39f161828b0581b2",
"md5": "bf8b722bc4bf2186626aed3cf57a4c3c",
"sha256": "85211d8759fd8aa8b317307eb8c888c48026cd03442f40d77eea85e490b5c8e3"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "bf8b722bc4bf2186626aed3cf57a4c3c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 586132,
"upload_time": "2024-10-15T19:13:09",
"upload_time_iso_8601": "2024-10-15T19:13:09.616721Z",
"url": "https://files.pythonhosted.org/packages/1d/2e/16f6890d4ea0db158195c2f1fb8889a738e86203c48d39f161828b0581b2/prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0c3b9a068fa8dfc1a3a0af36e8222062eb947232f43d6093f6bc3f76a91d021",
"md5": "4f63dc21512378ecf20b613c40d98689",
"sha256": "533731e6eb54a979787ab1c0db726ca2c38dc9ace43d171eb5263f010b2a0e48"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4f63dc21512378ecf20b613c40d98689",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 636588,
"upload_time": "2024-10-15T19:13:18",
"upload_time_iso_8601": "2024-10-15T19:13:18.974672Z",
"url": "https://files.pythonhosted.org/packages/e0/c3/b9a068fa8dfc1a3a0af36e8222062eb947232f43d6093f6bc3f76a91d021/prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75e14014959d1b9d61c3b97e4a576570cf53affc17fc2bb466281fdf0265e56d",
"md5": "69daf38053108d05f4d440dd1623efca",
"sha256": "8eaa474c714c327b8458a674af279c312fa4d9331fc4103bc4ff4c98b1d62760"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "69daf38053108d05f4d440dd1623efca",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 658100,
"upload_time": "2024-10-15T19:13:29",
"upload_time_iso_8601": "2024-10-15T19:13:29.159499Z",
"url": "https://files.pythonhosted.org/packages/75/e1/4014959d1b9d61c3b97e4a576570cf53affc17fc2bb466281fdf0265e56d/prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cc522e8f1e1176ba640bb2b856d24487591d69e8a2f3184418fa75a7985edf3",
"md5": "80141b519f9ee39e5de5efefd6b59565",
"sha256": "a08052e6f0ab14466c76586dc4e7079159e2e0e683e26136c904fe0689b46cb7"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "80141b519f9ee39e5de5efefd6b59565",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 580481,
"upload_time": "2024-10-15T19:13:46",
"upload_time_iso_8601": "2024-10-15T19:13:46.974730Z",
"url": "https://files.pythonhosted.org/packages/7c/c5/22e8f1e1176ba640bb2b856d24487591d69e8a2f3184418fa75a7985edf3/prelude_parser-0.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6521ddc5583cbd70b7b551273e676a6975a776be3f072cd8e23a43ce3191e52",
"md5": "2f62b26a06ca1a25a74e522b9fcb3a7a",
"sha256": "3b4ff6a53977c44f0305fcb9f7c8d2c34460e4861523e96b99b33a3b72c5f4a7"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "2f62b26a06ca1a25a74e522b9fcb3a7a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 618275,
"upload_time": "2024-10-15T19:13:37",
"upload_time_iso_8601": "2024-10-15T19:13:37.892676Z",
"url": "https://files.pythonhosted.org/packages/f6/52/1ddc5583cbd70b7b551273e676a6975a776be3f072cd8e23a43ce3191e52/prelude_parser-0.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b440c260a78491235b56f2e720582b32bf0535e25d31d433b73f8ee73f33dec",
"md5": "4f3cffc679042e0b45156846cbfbf095",
"sha256": "0cb4ef1b2e9b442f8ef462e25401f9c6e2418d24cda68c02feb2f09322a7b79e"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "4f3cffc679042e0b45156846cbfbf095",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 391487,
"upload_time": "2024-10-15T19:14:13",
"upload_time_iso_8601": "2024-10-15T19:14:13.275939Z",
"url": "https://files.pythonhosted.org/packages/0b/44/0c260a78491235b56f2e720582b32bf0535e25d31d433b73f8ee73f33dec/prelude_parser-0.11.2-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a78d5a7369fcfcb4aa4684190aaa0684399a75bb106b72a338c5e4b05040ccec",
"md5": "3b114fc4d69df15b35e482bf749faef4",
"sha256": "a9b53fe7291b61102c4317536711343469491563950a71efea943a52a65fc13b"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "3b114fc4d69df15b35e482bf749faef4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 415683,
"upload_time": "2024-10-15T19:14:08",
"upload_time_iso_8601": "2024-10-15T19:14:08.000184Z",
"url": "https://files.pythonhosted.org/packages/a7/8d/5a7369fcfcb4aa4684190aaa0684399a75bb106b72a338c5e4b05040ccec/prelude_parser-0.11.2-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55099aa38ae96a1582839f5a5cf752212bd263cd1bd31d9a6e966fb7ad407790",
"md5": "4ee9330bcf9af663d2eed07036c6fecb",
"sha256": "aa1b43d90d40bbee4c205ab3b1c069d503532757c46a8b1914de513ad77cc876"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4ee9330bcf9af663d2eed07036c6fecb",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 588749,
"upload_time": "2024-10-15T19:13:01",
"upload_time_iso_8601": "2024-10-15T19:13:01.798773Z",
"url": "https://files.pythonhosted.org/packages/55/09/9aa38ae96a1582839f5a5cf752212bd263cd1bd31d9a6e966fb7ad407790/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58194aa449c1160381ea2bf4b04d09ac60620f0c4f03cd7b04fc2c343132be2a",
"md5": "40eb40c043e679f9e14e69a5bf03955f",
"sha256": "13edfa21d0de6adb699198e1938cfadd42bde09e7290b3458420990230f38907"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "40eb40c043e679f9e14e69a5bf03955f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 584869,
"upload_time": "2024-10-15T19:13:11",
"upload_time_iso_8601": "2024-10-15T19:13:11.116798Z",
"url": "https://files.pythonhosted.org/packages/58/19/4aa449c1160381ea2bf4b04d09ac60620f0c4f03cd7b04fc2c343132be2a/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "220768f16cc33518679c001fea2a555fd48f6cc734e053f436650769d5626c6a",
"md5": "132ebb268297b8737d555d880c5ef08d",
"sha256": "c9fcecc9eb53a8949b10f161eee904f419a654e9a51ca800e26a503053c72376"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "132ebb268297b8737d555d880c5ef08d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 636249,
"upload_time": "2024-10-15T19:13:20",
"upload_time_iso_8601": "2024-10-15T19:13:20.481419Z",
"url": "https://files.pythonhosted.org/packages/22/07/68f16cc33518679c001fea2a555fd48f6cc734e053f436650769d5626c6a/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca2289627f00ff5f6514ea77b66e40bd1297394c0f0dd3bc74aba0807c088bac",
"md5": "8028d21071c5fbda8154c15a408f7b9b",
"sha256": "e6044027d0595b8d5fdce6a32b998a5111fa9a212aab4861565320500df9a1c3"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8028d21071c5fbda8154c15a408f7b9b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 656151,
"upload_time": "2024-10-15T19:13:30",
"upload_time_iso_8601": "2024-10-15T19:13:30.548348Z",
"url": "https://files.pythonhosted.org/packages/ca/22/89627f00ff5f6514ea77b66e40bd1297394c0f0dd3bc74aba0807c088bac/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54109360bc2f5a3f399b8431eaf10050fba994de7bde4f1ff9841ac0ca80ba0e",
"md5": "0104c5af19797fe2e1acdb1c9bf7b83e",
"sha256": "f099e9131784e6cd38d4d40883bb8de4c1ed5cba727e409ee0cc7596874737b9"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0104c5af19797fe2e1acdb1c9bf7b83e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 579968,
"upload_time": "2024-10-15T19:13:48",
"upload_time_iso_8601": "2024-10-15T19:13:48.263644Z",
"url": "https://files.pythonhosted.org/packages/54/10/9360bc2f5a3f399b8431eaf10050fba994de7bde4f1ff9841ac0ca80ba0e/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b71d20904b7910e29f577c178b06dd74be0782d7339508d01b447a140b4204bf",
"md5": "52d3383dc8c2dfc01a0420e4af83c3e1",
"sha256": "72ee09a003ca6ae23c16d8e98944aace766fc44b053feafd6124a6a2d3c7a7f1"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "52d3383dc8c2dfc01a0420e4af83c3e1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 617708,
"upload_time": "2024-10-15T19:13:39",
"upload_time_iso_8601": "2024-10-15T19:13:39.260066Z",
"url": "https://files.pythonhosted.org/packages/b7/1d/20904b7910e29f577c178b06dd74be0782d7339508d01b447a140b4204bf/prelude_parser-0.11.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22850983d372e1333db6746cfaec585dade8b3352365e2af3c273e2c0a411329",
"md5": "4a74d55671334972db1d5457285ef183",
"sha256": "88c74db659170fa95b5868764fe72bc05e745e18fb19ba1a31c52f44c9db244c"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4a74d55671334972db1d5457285ef183",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 588791,
"upload_time": "2024-10-15T19:13:03",
"upload_time_iso_8601": "2024-10-15T19:13:03.746519Z",
"url": "https://files.pythonhosted.org/packages/22/85/0983d372e1333db6746cfaec585dade8b3352365e2af3c273e2c0a411329/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fff57acb6659de25006f9d842a9c5659c4b20614c8bd769c3e6b5ba6dba6d4d7",
"md5": "41ad5fb763cf7e832a145aacbcaa08ca",
"sha256": "3486c5a88e9d80f2fa8857390f6bb398d5cf0ba78d1981c239a4c7f64462fe66"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "41ad5fb763cf7e832a145aacbcaa08ca",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 585404,
"upload_time": "2024-10-15T19:13:12",
"upload_time_iso_8601": "2024-10-15T19:13:12.471363Z",
"url": "https://files.pythonhosted.org/packages/ff/f5/7acb6659de25006f9d842a9c5659c4b20614c8bd769c3e6b5ba6dba6d4d7/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cca5c988144cf4fe84905be3e889ddf109b018f9cfda398176db5a1f6a12314c",
"md5": "34621e22fa2e815a051a2018779bafe0",
"sha256": "a32728961cc1abd2459e5e7670f286dfb464d5636f11a485df21ff748fe2897d"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "34621e22fa2e815a051a2018779bafe0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 635875,
"upload_time": "2024-10-15T19:13:22",
"upload_time_iso_8601": "2024-10-15T19:13:22.409019Z",
"url": "https://files.pythonhosted.org/packages/cc/a5/c988144cf4fe84905be3e889ddf109b018f9cfda398176db5a1f6a12314c/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2b85d12be678b1484a1e4ebed3c4d14cbc93295ae4af8ecf88270a6becf43ca",
"md5": "47d4149c3b1e2e2fbde2c21a9660c147",
"sha256": "578895b4523622df2184dc6f827d211561268f44f32440422a512029552c3615"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "47d4149c3b1e2e2fbde2c21a9660c147",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 656738,
"upload_time": "2024-10-15T19:13:31",
"upload_time_iso_8601": "2024-10-15T19:13:31.926333Z",
"url": "https://files.pythonhosted.org/packages/b2/b8/5d12be678b1484a1e4ebed3c4d14cbc93295ae4af8ecf88270a6becf43ca/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfb842ec21f77798cda27c0b5d3014bbd93627eefd92dfad2ebed8b989201cf2",
"md5": "e879bee9b68ac3c3888d90de840c5544",
"sha256": "8b9887dd75c71222320d80147268d3e3443ab6c42fe2df068b103b549bd44032"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e879bee9b68ac3c3888d90de840c5544",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 579880,
"upload_time": "2024-10-15T19:13:49",
"upload_time_iso_8601": "2024-10-15T19:13:49.526318Z",
"url": "https://files.pythonhosted.org/packages/df/b8/42ec21f77798cda27c0b5d3014bbd93627eefd92dfad2ebed8b989201cf2/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97ed818dc77b81005abff918da55fdbc13be7e51c22335d7ac155e150d66facc",
"md5": "cf2da6a2b6e0c4be864000f885708277",
"sha256": "26ba5a105bd17a691140669076657ba9dbf58f3883f67e057969d2f0a4075458"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "cf2da6a2b6e0c4be864000f885708277",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 617693,
"upload_time": "2024-10-15T19:13:41",
"upload_time_iso_8601": "2024-10-15T19:13:41.140822Z",
"url": "https://files.pythonhosted.org/packages/97/ed/818dc77b81005abff918da55fdbc13be7e51c22335d7ac155e150d66facc/prelude_parser-0.11.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47818edd7aae38eecd2cb4ea77832f740f439f9a96313d852140fcf91cc033a3",
"md5": "c504d9fe44daf7fc6161366182e02b95",
"sha256": "5f523b30cd958221102eca156a09762ec3e8f08edeaacba65c903ccb037f950e"
},
"downloads": -1,
"filename": "prelude_parser-0.11.2.tar.gz",
"has_sig": false,
"md5_digest": "c504d9fe44daf7fc6161366182e02b95",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 22648,
"upload_time": "2024-10-15T19:14:03",
"upload_time_iso_8601": "2024-10-15T19:14:03.284155Z",
"url": "https://files.pythonhosted.org/packages/47/81/8edd7aae38eecd2cb4ea77832f740f439f9a96313d852140fcf91cc033a3/prelude_parser-0.11.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-15 19:14:03",
"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"
}