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.11.1.tar.gz (22.6 kB view details)

Uploaded Source

Built Distributions

prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (609.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (658.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (579.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (609.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-cp312-none-win_amd64.whl (407.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

prelude_parser-0.11.1-cp312-none-win32.whl (383.8 kB view details)

Uploaded CPython 3.12 Windows x86

prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (577.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

prelude_parser-0.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (609.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-cp312-cp312-macosx_11_0_arm64.whl (509.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

prelude_parser-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl (521.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

prelude_parser-0.11.1-cp311-none-win_amd64.whl (406.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

prelude_parser-0.11.1-cp311-none-win32.whl (383.0 kB view details)

Uploaded CPython 3.11 Windows x86

prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

prelude_parser-0.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (609.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-cp311-cp311-macosx_11_0_arm64.whl (510.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

prelude_parser-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl (523.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

prelude_parser-0.11.1-cp310-none-win_amd64.whl (407.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

prelude_parser-0.11.1-cp310-none-win32.whl (383.5 kB view details)

Uploaded CPython 3.10 Windows x86

prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (579.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

prelude_parser-0.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (609.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-cp310-cp310-macosx_11_0_arm64.whl (510.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

prelude_parser-0.11.1-cp310-cp310-macosx_10_12_x86_64.whl (523.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

prelude_parser-0.11.1-cp39-none-win_amd64.whl (408.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

prelude_parser-0.11.1-cp39-none-win32.whl (383.9 kB view details)

Uploaded CPython 3.9 Windows x86

prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (579.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

prelude_parser-0.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (609.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

prelude_parser-0.11.1-cp39-cp39-macosx_11_0_arm64.whl (511.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

prelude_parser-0.11.1-cp39-cp39-macosx_10_12_x86_64.whl (523.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: prelude_parser-0.11.1.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for prelude_parser-0.11.1.tar.gz
Algorithm Hash digest
SHA256 ed1fdd194d42ff8909c3781fb440e0a441f4cd9d104f4ba6495864c5076ef259
MD5 e52f9c43f26141809e52c1061e63f9ed
BLAKE2b-256 206de3e232e901ec576deb8c3f06ab821ae317d65be8c58fe00c33ed899f957c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6fec2d9e6f80983ca7041d248da7d03e3425a1c84d770c05002795db4db0f79
MD5 924a825c9b55379cd79c1e4d2605574d
BLAKE2b-256 498febb603c2139542d91a5d01c90e057068b82ba98cae6f7cf66774491a9441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8709f75fb265517f8d9f81f59162896b79a5bc089e5cb4d00cd9d514d3dfe44
MD5 7ac0dc5ab0266e7b4d152de34d3df640
BLAKE2b-256 54159987cd534131e45ae90fd39ef5ccd38ebfbdc6915795e913fd9c079c5dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05bcb458e72eb924399558ad2314e753d3bf13894d75c30243fcb48649337846
MD5 5a00728546c6bb8d61e6422206b73d09
BLAKE2b-256 827932ef35e4fea25c85779e307a907a650f5196bd0cd894fb707f995b47b6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a518e55157bd44b4550630137f9a6d79b43fa8997b43fa5b707e35bfb52df492
MD5 2111f62bcdf9eabad809b938f38328d9
BLAKE2b-256 ba70f618a596940d1d6c479eeeb38ffb02edb96229c5740e4b512be09fd17e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a81923819405f04fdaa9787802a6e4d284baa9a13e0bd46cdbe380698111ae4
MD5 682926999d405ca146e5aa2b1de76b14
BLAKE2b-256 e7662ee1fdc0e6307c280de08873ea0107f617154b49da469246fb413e42ab76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2046ee54934275942e8205df26981e2350a1b5382685781c3d263aca76a1125c
MD5 f3d154f5c4fda1049fc910ab2eb7282c
BLAKE2b-256 74733707a551d301a7b0b50f485d9952aaae084e8b61c3c5939c96a698a2e2dc

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44aa43e63bba2a7636f31f59121846471ebbbcd7f3ea9141ed302c052711385f
MD5 98c8de797d67e2c0fb26e4ce78e8458f
BLAKE2b-256 1e2ef408fdae7cf5fab0654af3ca4d10345d1375c1fe603af6d7142bf72a23df

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab7040b8a6404e989153b077d268990d608444939a88234da534d6b15bf7f6a0
MD5 9fc4941cd0df4bd644888a9b71be5a25
BLAKE2b-256 505b69555f1036438a2aa46ed13e1103bcc7de05e3eae7b9fbe8d25a6ca576f4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c193d97efdf9ab43539e5e83484ee55fffa8361a4e4c636b2b0e66607326a5e6
MD5 9b4f39aa29bb0915007ff47b45301d2f
BLAKE2b-256 1e4e1248219fd24754404185e9fa02abe7e8bae0edbc21caabf8a9064e2d1710

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fd5fd7f2fbef8584d8d4fba18eb9a95923285dad268fce78f3c2885da1fabf7
MD5 3a18322f42fc20fcd01eb73f04be7868
BLAKE2b-256 1cc0832c4521d7eee4ab0ff9a72cd4456b571aac9c23adda63d85d723bb76af4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b89400928789595112d296e163d54d7fa805c44a803c46697606fb712c9e1b5e
MD5 ce8c6d6c4b6d10748ed43e7081e75470
BLAKE2b-256 1385d217e5d4db7a4d42f04f3c584def83d205e7e6bef9f8bd36ba92f3c65b0a

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74b6f261b5a12bd94495b9ca8c97868925e2812bbecf3cafeb8251a29914ad28
MD5 4d67a58ef474d37a9d89ee63ca3be208
BLAKE2b-256 4d63210288d70822d7bbc28432e438bb7bed639c3711d8f556bce93e6d5c16c2

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2b8e92d0845bb445f7d7664880cdac9142b79e07920fd50521d3a031319132c8
MD5 70cac7fde087433ef10e4a937eb669fd
BLAKE2b-256 5f40e0ab07dc6a3f1f4d3a92cc209b24f3ad3e98e502b25f41f739fc6130e360

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a9046e27839a7e8035ad0e928911dc4b4ec267bbedef1b201f9602f79a9b2d43
MD5 d0ddae4215d0af80f326d4bed33003a7
BLAKE2b-256 9287ff75f2fc34efb2de0044159637b5b98ee666ab9f15efadf86369ab188d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2bafbeb61d2a18d107ee7516b9e28a1c7dcb6c7b893a8f902a76ab513a87131
MD5 4668655421e14280298978cc2076d37f
BLAKE2b-256 f7a04e8b708c0c9e25ab971188548e10e6b461b67090c45f1850d76d72b40cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73384ef56211231163b379141bbdf67b9dd0efa3beb6d74f0567f7af171096b6
MD5 40aee91c1c9c0dbeef4ece0c90073793
BLAKE2b-256 cdbdbfd3fdcbd0a8dc9df1ad1b2e3bbd6f0d211dde3158a7e8939f9c47a87077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 454f16e0843d966a57d88f24a3d2e5c176663cb227780c82f4e86be56c0c679b
MD5 358802cf20b9868c0befed9ba17603e8
BLAKE2b-256 9b99aba4128b64d5e0c677ebd421762eea52b27edbf77ef7759e2b649ce84581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45b20ff390ff8bf7273403852d9902d261fa4c9df357b5d8822a7b6f3bbb8c20
MD5 0b36bcee0abfef1542abaaa7d2e7617b
BLAKE2b-256 c4bf62d0d2cb4f06d1096ef89ebbfe9893bb8628a40c0374dc042a4c45d2e615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43a6c1e290b0450ffc35e56672c5aa9ae8343b662a5a57fd6e5d5881a2bfd016
MD5 b1b504aca1bef6110b48452cc72d518d
BLAKE2b-256 d2d9e08b96a0dd20cb45b253e927e70b16e7a28af13c9e1dae5a8f5087f51b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a381108172bf41a8686bcda16b3f244af9b06aee933a61a66a533c5de227d67
MD5 90da3441e2dadf324fe061a1215d303b
BLAKE2b-256 db0f96f572140f29b4864ac2183d1558645adfa7df69ce9cf2f3b1289ea331e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc5f6e9302085c60518b1e1cd75d0e6246e59db2c6d5d2340ebccc9c8f8d7509
MD5 4dfdef5e632dfbe3aeb4f992c9f2e8eb
BLAKE2b-256 67a3aa0eb5b3fb32c4705b3a7e0f081c5122ec89a8996dcfb8beeaf61c37233d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 664eaf61e8c785c2cd7b1f37e38bdf62e8a6573285219363cf2c5ae68ef91c30
MD5 bb80d8c4b61b98675ee62f8294e9f3a5
BLAKE2b-256 20ebff14a86be81fb4288cdb328b1f0b7a756c0dbf0f3ba784c7c7b5148af496

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d52e87a0cb8d74596d64da3c7b88583179cce6d3845c88a566d8601162b60c16
MD5 b5357f1ff3de09be431fd156e0f57e7c
BLAKE2b-256 6bf4ea45efeed7c2f947839ba7fd00c52bbbfedfbbe2862dbdb7b5809cc88572

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a5de1edc6461bd0371f064435c5a6588483026a148a39dc5b258f2ec3074c6cf
MD5 cb5d942bed75e6e200cff0231cfbc68a
BLAKE2b-256 12b40d5c9585c4f628d36cf10f835a4d11dddbda0dcf60824d766a9e4b247046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2742d320654ae4db6b292c326116b2450d2456843e92df98380596578ec527d4
MD5 cf8eae19ebf8437f5ae6a245f8f13747
BLAKE2b-256 ccec8dbab21b5c2dd5de1d7b882b36b467569258087551211d44886f26e38b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d110aa34cd88fce1a461cb232fbd206413a81e9104cf44ab2d51ee41138264cb
MD5 65b16e8254a7107a1f7df62b82c03b0b
BLAKE2b-256 261ef981382cd46e23c60f0eefaa2704700c612baddf9afc4ff57595d9a12043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09396abc2770c6c154f9516abeebc0dce04c65c99ff4cb53b99a85518272ed3d
MD5 142e5b3332f9e7c212985b527b1e7440
BLAKE2b-256 49104db3d2eacb6a38eb962cf69e40f05c705576b04444e9843e2d1037477153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a89baf7049861c007f7ad08d23dd15ca420fcd936cd158f9af1578b5fb9c8c2
MD5 f104092151ba6589497529799f5e5ee3
BLAKE2b-256 274c2b3255584a6e831449de88bc59469ce80a058e00d50e8f97340007c9f5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7926731ad459f41781005b19f85e47bcd16ea5c8edb58e4d0e610ca35099709
MD5 4f1a86fa92bc675f37d8cede6485d3fd
BLAKE2b-256 72ec73e087aa7f987de6c0f0f3f46862b3c9a0e2932c4f6d560da69e5e77a25c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56a3d39a227118b226dc57ad91bf7f4c69af73cfc38270bf7aa55c1b7ac3839a
MD5 c77425d53bf4517091d5bfed73861f2b
BLAKE2b-256 14c0044c1608a21c9f707fd2326fa4ab5534e9dab65d8031c95accd2a2e05b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c8c7b5d73689e219b9ae15993096dd6697ddf354a6301d6cade62236149b11
MD5 44a04a0036304feb1b3cfd2595c827b7
BLAKE2b-256 259fae30d5445efb09af7ddc332baa4051464959f6b989b85706b8c928dc9eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6f5a07f5276205a3f2a14f4599dec4f43068a5bfc44e5e3714763e4309646b2
MD5 79a0061b8da712b234eb28485535d17b
BLAKE2b-256 3083a3f58cc6717c1f2ee8c8a1a36c0aa1d893a28eebcbff0a0cb4421805fa9f

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3213a26f0ab632847d9dafbf9651635727a4f49c59cb2c1f1b0c6d2cce08548
MD5 3719e15fabb663f7c5e9061daf0d7895
BLAKE2b-256 01eb89b43897af4080dcdde9b2a4ca6e6abc63f5f081548c2edf58534cdd3880

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9cea94933aedddf98c87bd536129c5e32373b07c5e4df22d1a1cf07f23601705
MD5 c89e3113debba44799ae43a706026623
BLAKE2b-256 6824f871935085c7885b3e02ba5fd26b4fb69753ae9601afed63400727b8df00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f282644b2eb07ddbd4c66464c9164ed8b8837e81c09ce3dc9f2b454c61a1ce9a
MD5 b880308ede5888e19569c80ffc29a5ce
BLAKE2b-256 0e0368a1726cf3b6a76d7793c61350eaad3515e993db0c185f820540b9a794cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4d17cf655f1c7d7cde741a5553f1c3dc8fb1a49ff56e91dd7ea8b151700b58d
MD5 50da744cb58c425f5ba6043e3ba8d04c
BLAKE2b-256 c043463fb9196d192491eb68b0e8e235d1311d046f649890a047476234fbf081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59dc40f7c3876019fe9b70395e25ad4044ff4b3915fc3b58c96211b7dbc1c352
MD5 c89985eba54ce449b1820a368af9a53d
BLAKE2b-256 7375ff3f1c7e9256ae7399d5e7438617c8227ced753ab816b12f2624ae0c3011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d687ff1a311d858d8706a89cd435299f6253c598abc9c130d60f9777e39bdc59
MD5 f7f71e188695f2c9eadb947eba9c2da4
BLAKE2b-256 160d950094ed53f52f50ee223564e431edff389ff945c03139ad42b14b246564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5496072116a35e64bb8b9f1e3dcd54024642f19a5f7e931b81677a5a82d308bf
MD5 6d069386d6128bbc8fa3ba111c5a274d
BLAKE2b-256 cd819a8c344b8dddaaca74547deb14a820c27f85ce9a795736682588360dd706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 043df42d7553e6a8cc51748bbaabac539724b2507409e12e74e57d14770e0431
MD5 13215698437a3282e280131e0cdfad6c
BLAKE2b-256 94920d48f5626e80df9d67de80d67efba49ffb0a723d42c95f6fde17bcfcfc94

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18087d7dbe14964e03d49c31de6638ffa8724f2aa714280b3f4e61d4de2c9904
MD5 e1f723c5e2c0091b009fc558c7d313d0
BLAKE2b-256 0579867b80509b7b6f2dcea9d2aea3cdb058cb89e83d9f0329eb40b1326e7812

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16597da4ad6681a2f76abfb120e1f35cd87e895042040a6362a04d765f156a0b
MD5 f464d4a3758aee08847ee9c7fa383c03
BLAKE2b-256 afc725fcb27aa4f38132228eb8c61bc08f8d1922bfacefd896920d3183939cf2

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c883a6589b05e7eaed304238954339c8da5b208d500aee2e08c4495c2defc5e
MD5 b2789c34c43548e93cf1a630fa5785c6
BLAKE2b-256 80f216ec905ef32f57902665341f53ed9c9074e878d15865ebcc166dbf16f148

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-none-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ab3eec974572f65f42451e0a4e16ec8de5b2f0d11d31aa3bc2c86fc874e6e58d
MD5 9b51901de6838b074ca87a7b4bc1bdf2
BLAKE2b-256 7ec225bc7a903127fd3384154819b7a8d66cfafd93ef8dfe532675c1fab49de1

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebc7d5e78ee87830582d53782865d36df4e74af8d72f39c3fb27a0522d3be170
MD5 9886b39267b7a0f27fa66e9617bae1c8
BLAKE2b-256 c2bd2c48c6e22b4099f1099e4103790942e7435114f8b91b576675e282184b9c

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 815df696ef8d5730c33ec12d743d2a941f388e8c57749cdfeb314679b521bf27
MD5 e2ef58b2b431eaade69fd9310a6ff9fb
BLAKE2b-256 5e81f3cf4af535f7a24b6f966d450062c3dcb50ebc36ff69f1e1cb5eed05d6ee

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a27ab076b25fa0b50258477919247b69a9194d3ae7243a21e4d6cb85851cbef6
MD5 97d91014ceb3d7c2ae53fd4906f3b038
BLAKE2b-256 2d28e906eb77a74dd6f58ba2fb79678dae3983446e34a9413d2ea805b2f2aa01

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63d7ec84beb8abde6049ad411403805b1a95e3e03028b4fb5b92473891e2d323
MD5 dd1c401e879ddae6708222e7306dc8db
BLAKE2b-256 cf70614cf0adb5f3e830cec7ec716223bb11afa1bd745a735bb937d53ac87d0c

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9463e68af618aab7e9c631867044fc38fe72956ecdfe2cbe7adb0524f7dbaf83
MD5 13eec84500d80e9b552a09b8baa4b970
BLAKE2b-256 900a11b7cac0b8e9c03c3a94fc1dca97ffe142a2c45746531b4595ca6dc34c30

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94a1b1daeb6af312406cde1776031099a460fdc926a71ce58a0e467f12354776
MD5 a3c5d1fa3100dc1f3ee964f89e55d8f2
BLAKE2b-256 e99b037bfb4b9842c744130e0caa814435f8af02263d609143e51fc696b22803

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d19e4d9b88be94df73bece0143a738771b3681183934198401ea803b2a820c1
MD5 9453768ef068d653771d906db6afb1a2
BLAKE2b-256 e9b09e656a3ff6cd1c0bd90a0794e64f8d91bb8818f4c3f1f88d8483693d97e0

See more details on using hashes here.

File details

Details for the file prelude_parser-0.11.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.11.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6818128426009545c33a8ed94091c9ca6a19e382439ad24fef588c2984632823
MD5 8c563c8c300fcffcdc717eb35225e63c
BLAKE2b-256 364d28ee2a4719667abee7b535690186b0ecf8675ba6cebb0670e86c87dff4f1

See more details on using hashes here.

Supported by

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