Skip to main content

Parses XML files exported from Prelude EDC into formats usable by Python.

Project description

Prelude Parser

Tests Status pre-commit.ci status Coverage PyPI version PyPI - Python Version

Parses XML files exported from Prelude EDC into formats Python can use.

Installation

pip install prelude-parser

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

pip install prelude-parser[pandas]

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

pip install prelude-parser[polars]

All extras can be install with

pip install prelude-parser[all]

Usage

Parse a Prelude flat XML file to a Python dictionary.

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.

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.

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.

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prelude_parser-0.13.0.tar.gz (49.0 kB view details)

Uploaded Source

Built Distributions

prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (707.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (607.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (653.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (706.2 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

prelude_parser-0.13.0-cp313-cp313-win_amd64.whl (435.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

prelude_parser-0.13.0-cp313-cp313-win32.whl (416.4 kB view details)

Uploaded CPython 3.13 Windows x86

prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (610.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (707.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (680.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

prelude_parser-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (650.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

prelude_parser-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (554.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

prelude_parser-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl (564.0 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

prelude_parser-0.13.0-cp312-cp312-win_amd64.whl (435.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

prelude_parser-0.13.0-cp312-cp312-win32.whl (416.7 kB view details)

Uploaded CPython 3.12 Windows x86

prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (610.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (709.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (680.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

prelude_parser-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (651.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

prelude_parser-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (555.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

prelude_parser-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl (564.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

prelude_parser-0.13.0-cp311-cp311-win_amd64.whl (436.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

prelude_parser-0.13.0-cp311-cp311-win32.whl (417.8 kB view details)

Uploaded CPython 3.11 Windows x86

prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (709.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (606.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

prelude_parser-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (652.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

prelude_parser-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (558.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

prelude_parser-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl (567.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

prelude_parser-0.13.0-cp310-cp310-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

prelude_parser-0.13.0-cp310-cp310-win32.whl (417.5 kB view details)

Uploaded CPython 3.10 Windows x86

prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (711.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (606.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

prelude_parser-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (651.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

File details

Details for the file prelude_parser-0.13.0.tar.gz.

File metadata

  • Download URL: prelude_parser-0.13.0.tar.gz
  • Upload date:
  • Size: 49.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for prelude_parser-0.13.0.tar.gz
Algorithm Hash digest
SHA256 9efe07de469550af9ed116ae3336b9b707e9a67e1ab341eec2a52c8f59de76ff
MD5 474de4c20d385c6219e6aa563b914d90
BLAKE2b-256 462e0e56d478450725162b39ea539a7aec0c538d5711c89c8fac216b77372741

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ba4da42aa1c8f5e2fdc1ec8d15ed685defd0f1583f7d204c3cbc6e22c7ea464
MD5 577009bb8d1ffdfb3ee0466bbeb343b8
BLAKE2b-256 c49a0b4090fde7f9056235402076fc3b0eb0af83979f1e9e56346aa3ed715312

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b10b62130db050d99cc554339ccef98ff370b80a818396cec7dd76036996a81
MD5 4a139a4ac0d1b59e44f7f8764c3ac828
BLAKE2b-256 694ffca4df89a5aed27a77e03933e49ec4ba071121c9bead5efa4ff3542a4f54

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcab89118577911f8bd802efbd48e71a26e02f2cd0f03255fa15de616783e078
MD5 6cf247e6b75eb1bcb0827269e36b9f7c
BLAKE2b-256 f4ac6a0d173392213f6330f0973b5a57dab634747e5c70b3bf018c8b00a0b07b

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 857f8e8e9f0ab821c855e47613babd3763f7a0d6065cbdccff23b5b3016e25e3
MD5 03780043da2f06f9310165c6231940a1
BLAKE2b-256 73258bb106e6e8495a952fc3bb38adfe34d4f561d039abe5848054bebb27d23a

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ee112b699984aa32c120e3ef6bb60f69560808cb57ec4ea1e64a25760ed43d2
MD5 49562c95088e3be24b8f4163138c6a96
BLAKE2b-256 ce94bc5f58490c8e4a2f9e0345305d87f4782f827a9e5db6ac2115ee90821318

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dda0e85bd8c31d6b0cec4e750da42f1e76a1b9681892eee029e63c7a2302faa
MD5 e6664ae1c5c8a7b811c049ff4ffb4c4d
BLAKE2b-256 ce0b823333c74dc959702c32a9597adfeaebe1f02ddb5c97bdefd4f92009e420

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 648a0e51268e390a840bfa44abd24bf8ea363b3e33eb1f290d6f4765201459a6
MD5 082461ba9f26e4b9886d49618c655977
BLAKE2b-256 d1d527b674aabd903450898297b3d7cae340259fb45667f361ccf19033490dd4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cda960420218f56d12ab104064544a76220c782b9b87e8b3d3321b3c14e9cca
MD5 0e3635b6860475f890aa18da2ec3e17f
BLAKE2b-256 658cf1decff8bc01b34ad241c7489581627cb920357a60616c5c9c50b57fe089

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d7907f74f139efb49da8a692ec469036e4caace3ca599675e579ad4ff62edf4
MD5 5874b35954d2b9f97cc374ee11522b49
BLAKE2b-256 44b13085145fc0f00e44d0e6789f4eb6084f24cc830ef7117c34beda55132d12

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d7d66773d4a13569c258d578d3c2a457639555a140a22161c369ab1ae178303
MD5 0fb0e5cff225483f967f863a756bd3c0
BLAKE2b-256 f5290524598bae5912257916375bf7ba226202508ccb061281cb7503c371d787

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1dc0c9230608bc25acbec37dc5971cfdabf2aa4c5796f84e23a4b887618c4fc
MD5 caeb00006095f1d5e3f21783502fcdd3
BLAKE2b-256 3ddef726a6e77f57d7f2c61e2794cfe89ab3df16bb1638026d4c59f943abb2df

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 257bbec921e4f2e4045b32e19365463325eba060c00ff18b645fefdb4e1c72d5
MD5 2cadd06a22325dfe98e259ac033e3a40
BLAKE2b-256 e2fda9e709ab49b711c47503118c5d4ba0d8c39cbf7878ae698bcc90e52b6639

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 127997c5416b7dee007736e2079f3e19ae6f9c4cf2216c2b0c7c3426fa3ad391
MD5 12e4e352cff34f667bcb06a90bbb0c84
BLAKE2b-256 3c23497a2a32a7aef8aefecff18597d2bc44d81d14a7d8cf3868e0562c3b8609

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57880b3a198caa87d7c5ad69905e4e89335e855f4ebf4db009d16952a3768770
MD5 b4fd77c761207565f34448233cd634bd
BLAKE2b-256 c8e75cee2d099ea78fc25d4b19b454053d55b858f848138699aef01b90c5d135

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a5d0dbd9d8b114460f2e1deeed129b8fed311f8fcbe59cda09dd254d5c48022
MD5 e459a3d368b73a6568f1f2d25ef88e35
BLAKE2b-256 3b9368e2bda1e87f82884b1775351ae4c5166a143b4c37ae08c020682d319ebb

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ca1434f82cf0a9e885589e0678d990e41e5ba757659807872640d957c37ad0e
MD5 d4041fab768609ec5eaf94275c54c68c
BLAKE2b-256 543ecd9b8e719bec1567e6fed4cb18daf968e75234831deaf80438be28cfd7c8

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1af915bb8812e85553c37c48db5d4a91902e723149d8f9131be3604c2412094b
MD5 7eb5d7663acc48952016bd4f4e9184eb
BLAKE2b-256 c7e8a3bd10651e84e5fdd611d68a155358e4c13421c548ec6446296c39639797

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39f0115f7d42abc6680c17bb92a9099aae8508fa695bfd33f508cb99998599c6
MD5 b5d02821ff2707e3bae2fc974384478a
BLAKE2b-256 e8eae15620f5a2ab3b7dea75ffb1b39fe737403a2a134a2b78add93fb0a807c8

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 733d41700d9d534525336da672a97ac3158426b4978a57b37e2a0069065f9fc6
MD5 8bda93a6a1ea88bfc7b71693bcab0dc8
BLAKE2b-256 86d750dc6c85778c9695f36b433727f6af54df5a7fb9d9330a0e7ae0e6cb7c95

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c98e9658d5b5c35d81bf2e9ffb791b72c81689665af11bcb856d6efd3d97a830
MD5 538f31d47c8d5cb999b340aaa67129ca
BLAKE2b-256 f747a960c283a2e52fd7b07673fbc0c1b6753c485bd0f9e456e2bbef1e7b9922

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 815a374add81289c831d945d33b2df8b41fb4721cc0991492b97f322b6819b67
MD5 f162381c397fc29372148e8b1690a974
BLAKE2b-256 07de0d22d5917df1e9800fa692ffdc142a17b2ceeb4d23ab007c7e4c84d876f2

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ebc2efaf63a0702883582d17ecc8e0ef566f3cfe1f8289347b9e9649ad9b485
MD5 35a49ad552fb2def69f3b4b8f8db65a1
BLAKE2b-256 dbf44bca8ad17c8daee67fcfee54dd5df927bf2ffd7093c27cae4b93d6883b6e

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c795995ae4645520d462ba0c85256f193f1f0ec26dc3295d431707e89575eb51
MD5 ed518384515d2209b5df0cefb6ae5844
BLAKE2b-256 7da8506626096eb6addb3152201baf4249c9d030945cf08f92a29016ced768b5

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bcfbd8caa5e54e347febf2eba3c031812baac57dc2e93a0068b2e7881fec807f
MD5 d48d596209388043b31d86c7ba0d66b1
BLAKE2b-256 b998691bc5465e0677f80c1edead6328439341bd47a96b6340f4af0a3c670370

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a14d6cad385a38ce6e75555c2c525e77ad30e6f01a7562fca7ec51c953a47604
MD5 7a982c426912d14ff41a9ecc9bdb4745
BLAKE2b-256 1211f9aa940f475add907ba17000dbf7748e300077991a0c6cbc221f1e3ec004

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd9eb60d4430e72b0be452c48589ad9e6a86484101f530325d31d348bc8046e5
MD5 f4c5e6220d9ad73b98851bf9920320a2
BLAKE2b-256 538553eec4fdab70ff96e801a5b6ba75826c77f1b5eb84a87012f0723a8e6b8d

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5028149d26360ea26d874ea6e3148e0763b915da5554a275c9d7b3e5515d1533
MD5 c944e41afa8678963ea6e7a494dcecfd
BLAKE2b-256 7539c6a89281b2e6a5b253318b16ac8978f4a12bee8d156ef62b7689f725983b

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9df8f3b0154c777c019afe1e7cb0d42d901ed2720a022e900077b3cd47210507
MD5 fdc538f56e3ab96528ccb44e63e9039a
BLAKE2b-256 8e8f552c5817094d82d482ba7f179d031cab8b339812fd3d2edd8ce4db92d562

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8e20b3e17e479b928325444c37a3cf2ed6bac20ea4fbadc016d9918b82e2f7d
MD5 d3c215dff8eed3819b2312266cee4d1e
BLAKE2b-256 2a66b67f7b217540e86b4be13833519c5342895d1f459a32632adf4383b2854f

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e078ca84fe5f7640237570d89ed77016b168a97f2fd66bcd63e303bf2f11601f
MD5 4d9e510c484d5f04df3f8a63e6e01699
BLAKE2b-256 8ae02cf9cf33ea91664b4fd60c9754ed039b0548b848c6fab39c8789b627c20f

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8c7c30cdbe6d1d3a060389fb959d167f7c07bd74ffdf808680bd8c8a423621c
MD5 a436298e38ecfd9e91a04da76c007064
BLAKE2b-256 853d51955a4bf323dd503a1de12078143bef82a3f8b81289bcc7190ec63f663f

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 92272de2cb9e294b85ba5799fcf78217b6e1d3eabd954a2ed0bb57d7b49d3c83
MD5 3ae038cd6351d137b11d8ed570071f13
BLAKE2b-256 4313809c214ec4b8c8dd880771b908ec258adc05bb9b62d8cf1d07ecb72a5b78

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceae3989f90d90c96a6942a7d3e1fe207e70ebbad019eab157159466141e37d9
MD5 6327978c38f142e08816ed79d8b4ef53
BLAKE2b-256 6ab0151ea4b73390bf1c57aaa0d0868c6190cf6bc6766dccad2998851ab39dbc

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 101c342f0b5c1b9ece5e1ed83e1bcf3c4e2f5c88b22cc4bbd3723374ade05a4d
MD5 d3413a87e1081cf583af9ab204233557
BLAKE2b-256 73cf0e0384dee223eabaa541c875cef0a17f2e899081a89ef7e7d4ff3536de9c

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f3b15fb67fc3df2185a2e86673227acd730c7a2675ee9f252b00281289e83f5
MD5 3bc64aa475e9865f0617e0278c8a940d
BLAKE2b-256 9509618eec4f19f5b5307a923eafa63525b5b524c8637e59be4e89ac448b684c

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b0b7c6815d836324f241cd2b8da382893a8a583d6d8632cc6085bbdf74f74d7
MD5 45994d358a1f291fc2e68df9b8ff2cde
BLAKE2b-256 5ecef0de7c35e63b470e44377448daabcd4cb26031294284159ff9c1603e9757

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d1e2df653df1d0c3499ff7d8027be14e127992b6c2759e002d54b4d8dc5095c
MD5 cd1e7bf9f5b259d6f1d6f320626829f6
BLAKE2b-256 ef617ebfd390d4f41b72de52d1d39ba3067bb955c09b3621adb67027e7e1c441

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64e88e41fefb735a2eebeb7430c99dbb246c402d2e656080aee5f0e1c3517083
MD5 d15b25cad80a34fbd4173c401842a6d9
BLAKE2b-256 87fa32b3bd6e1a1baece1130800bc88257206fc00373d4f073c5fe7fbf56c877

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf5e01039bbb015c19a97537779ad75516a29a3d8621b1c73f2dba75fdc0b0b5
MD5 c4853f04c6d7ada65417e419ce5f04b5
BLAKE2b-256 9612e6870c3e0f7d53a402d32c60b4b02ac2e8791bf5645c9950848123e5d5a9

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18ee76ad0a426252bfc971f0539690d15fe1406435549b4a60a3fe94b155f094
MD5 758e3dab314184ae9d4849aee77a6b45
BLAKE2b-256 7d5b28500fc96f6f946cde32c192590e803279cdbedb883e98919c25aa33a1c9

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac18ea9ac81af0b65fd68a58fd2132253707787b0d7dd6c83316194b285ae61d
MD5 b97892bf3eb8c43bb9b795c700899313
BLAKE2b-256 ca7d255631ddcf36f5468134e135f3bbfbf9cb05891b69334220974e9ea265ca

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2b61063f9988910a4fe9c8063f0fa0be4f7487e37e8b32016ea37dab1724cf79
MD5 eea2fd7f3697b95669e847dc84638a35
BLAKE2b-256 26cb1e7895fa40e1921acb665dc929eb0d6f4dc58ec016d177e766d3442537a2

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de550b5d240dfe57d63500ccda86ae691c46a676e8b8800a450785c3c64bb106
MD5 3685ce011cf44f10dd2a5f5cecb672de
BLAKE2b-256 fe57890eb5bbb5f4dcd0cb6c27e4a8a964d256893c8db19e8570531c841a84dd

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9e2e1b0160012901b0c8024ad5257e2434a049c6b051298e29ee444f1f2a902
MD5 5acd47dcbecaecaa6e5130d6323df712
BLAKE2b-256 f635834df80bdcd0b049b3ec59bcb28e9edc0f857cf044ca19d56f533b897f29

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b6fdaaecab7f97fe184fd23e99305c4db75c0b9d57c5db0dc6c92b57d44f025
MD5 911159267e5c424fad069610943f45b8
BLAKE2b-256 0a40f8d6d4169492bf1e4d228d1b6739562d85307e29637607e985204fe53bb6

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 444c0943e1616c0fa76d15df43ee2b74b5a8679db791894b9fd5ddc350f08395
MD5 e8435d00a63566968a599a522493ca1c
BLAKE2b-256 f7d756b29e9fa5d3afe17c624a4fd08cc8b6c7a63fbd1de77f031bfce14d5d72

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adcc0ebb9980e3a5b1b2d9d2b8b06890f8aa905cba367eaeac5eea19554e4c22
MD5 02cbc73eba2dddc8157b0486772173e0
BLAKE2b-256 78ed09515032839d17d23fefac90306319d724a34b7706b5a28cb243505c5963

See more details on using hashes here.

File details

Details for the file prelude_parser-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1954d2ca2985dd061246810af2227592db66f0624b65515621c3edf945464f6a
MD5 cca3dd7ecdb19b98a29c90074229f604
BLAKE2b-256 222a17dcbbd99f751cd4013f3c4fc9a76e0047390cf371065fa82f6f6011031e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page