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 separate 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 separate 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.16.0.tar.gz (68.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (787.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (631.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (636.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (683.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (779.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (625.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (632.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp314-cp314-win_amd64.whl (466.1 kB view details)

Uploaded CPython 3.14Windows x86-64

prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (631.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (781.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (677.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

prelude_parser-0.16.0-cp314-cp314-macosx_11_0_arm64.whl (583.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

prelude_parser-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl (586.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (779.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (632.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp313-cp313-win_amd64.whl (465.2 kB view details)

Uploaded CPython 3.13Windows x86-64

prelude_parser-0.16.0-cp313-cp313-win32.whl (431.6 kB view details)

Uploaded CPython 3.13Windows x86

prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (676.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (779.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (677.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

prelude_parser-0.16.0-cp313-cp313-macosx_11_0_arm64.whl (582.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

prelude_parser-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl (588.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

prelude_parser-0.16.0-cp312-cp312-win_amd64.whl (465.5 kB view details)

Uploaded CPython 3.12Windows x86-64

prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (677.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (678.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

prelude_parser-0.16.0-cp312-cp312-macosx_11_0_arm64.whl (583.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

prelude_parser-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl (589.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

prelude_parser-0.16.0-cp311-cp311-win_amd64.whl (467.1 kB view details)

Uploaded CPython 3.11Windows x86-64

prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (630.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (682.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

prelude_parser-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (586.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

prelude_parser-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

prelude_parser-0.16.0-cp310-cp310-win_amd64.whl (466.9 kB view details)

Uploaded CPython 3.10Windows x86-64

prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (632.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

prelude_parser-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (685.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for prelude_parser-0.16.0.tar.gz
Algorithm Hash digest
SHA256 9cf5dae40b93bd5cc6459f9f828cb8fa0b2e7bbb4f9c9e7b9470a11786128a7e
MD5 9293504d448578cf450d48ff6d1d5c72
BLAKE2b-256 654beb0177ab616e6c2d197922bf2694d6bd695d3d56d265f7d81d1eb46f0498

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 717c11da65a3816beddb05693175b3780a6c290da318f38dc9b938bb2c340bce
MD5 5e8d07760a34816907c70e039b4d0ef4
BLAKE2b-256 86b5b6f9c2d575a209012bd9d6feeef5aa5aeebe511a4dde05066d1817d7c68d

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 391b3ff0fddc168ab82230b1c318631252a42e2013008dca7a8d7a39a7d1c9c5
MD5 c56093813b7709e982e193e25538602d
BLAKE2b-256 9b810a7317ee57178864f403125774a667d3d1209f5c73c9933691cd12a8dbb8

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1270c788264a3b5638f99f91c0c9df32c4600167e649ef878c4444a46e51c29
MD5 262dd24d58e8ac8ba18dd48d07b5fcb0
BLAKE2b-256 c41dc68b0662ade1986dcb5c53df425c4cc0532e5f91993e5222af253e7213de

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e5844da03baf556486c15dfcc3c020d1a8bbcb8af50a5167b5e6dc541b4d6bb
MD5 9b0971a517feafc497d6fb6988343477
BLAKE2b-256 ef414eef9ed17408dccc6da4de416e64ab0833a2f5c0fe2a88af8670d0360375

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32ca07d29da0116127fdf099f0069fd42633a31d97c13b5764aa9ac3d3d41fc6
MD5 aaf5518463a2acf5b18d08957ad9c292
BLAKE2b-256 14b4ecbd2fa9e93fcb5c6fecfe2b77cd2184103b31a0914cf93e68946d792179

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a153fda8d5603ec8a1103e4ae79499d3e28baf212ef76f48aa9221470f2dc6a9
MD5 6d06b3059de3afcb1de8e8ace03e3e62
BLAKE2b-256 2c3bd98540fe63b560160044bdddef1a23cfdac60ae31b6732b08a4d936c9acf

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cad1137db195028453bba627c78b77fe7a5dee50baba4b724b1dbcdcdbf3bf8
MD5 68468b9d10b19a9d1e1b033209c45b3a
BLAKE2b-256 7ed3981a55ea4c254d4a424b7f8e7b977557b2ca48a55d39c31246e1b378f338

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93ba7fc88c8aee533c4c38ee4145fffa6d4a612eb6161cb851e9f25b956429ca
MD5 3e943159b9e1f71c73fa041d73905f8f
BLAKE2b-256 00f0667c477b7a141fe60175f0e1ac5c66e9c8a79af5aff6aa64978f4781e8d1

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f52a65af429dace774c0597b25bb0df6b307c8d6430cacb88f6a830f2822b94
MD5 6e6a044fc2838c47604212d93727ca60
BLAKE2b-256 cc28abd2565e167a4010912d5f1ba712d482060ecb3d2b32eee4631e1f64052b

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e065a6f1f30a9981e8b67bfd91136000f51dc538bdac00e40580a8cb6f37b0af
MD5 49b218a9fb9a706735d0f110e648532f
BLAKE2b-256 97ad7c31d4eca5ef544c877d3ba08be04540ff42e75a4c1884e7b8068e68a5f4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0fff418bacc2f5654761617ba148e6b79f7193fb1e97ee14a50517113d52b14
MD5 d00ff25b2739b02135b42135d5a6cbd1
BLAKE2b-256 484a6a77ab2f5efd612ea28baa8f440c953dbde7fa5556bb7c7d5dd38de841e3

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25b04045de6fec138995f74d7df69466ae9e47c2285efca52fcfb5956538bf63
MD5 16e9de5cdea24f94cc72043a35d03c51
BLAKE2b-256 2876305f1893cfd59eef23833b31efb44fe6214932cd79ffe54b92a7c1396383

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb81f97cc4ef5067a0fd4b666a28514d1db57a8a5c8cc8111fdf4ee50f2f980b
MD5 48e6402eec5f3aabd68eac11d49d6517
BLAKE2b-256 cee442ae868eb31d0bd684cc1f66ca00ff502296e78d5a630e2174ae2dedd763

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dafefe4353d7955e816cb388d6fff1f7bfa72e2ba8c2b289a1dcbe2265593aa
MD5 213041713a8152ef0d4eb61ac951ed04
BLAKE2b-256 775c855404c70a121fcce5f41ba83824a24641070f654b1f5d5c97ed2c4a44d4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b8742cf0b55cc3761dc783901e85574ebe8ff72472c684347c716487fc825c7
MD5 8b4c89c5657469724e8a52e6d5572cf5
BLAKE2b-256 0730a44c5632b1672a141eff090356f9e335e6fc1b5fc16055a3ad3d34d802bf

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79531f880f1de5d6172b6b48b46c25f9170cca9058b573253fde21b80697e50e
MD5 cfd867f9aa9cbf5a77d3ae084efe7ae6
BLAKE2b-256 1439a173279fba3015d84316d5686f0ed8889fdc49d6f6dbe8e5960aeadbc11d

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecf105b685ca491d3e3fc95c26107640ab53aafd05fcadc5ab93b9035980659b
MD5 504103ac2792bc20b47655f83514f7cc
BLAKE2b-256 56caa28dbae8f5aa1a08a6fb535cfae5458bb804a558b452d5ae93ba39dd7d8e

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39e63e0089c0a04a27a19fbed2180a5a5403719fd8a9200693c94b2833561218
MD5 66f218c0143365fd963acb5af891be75
BLAKE2b-256 ca18c75fecfee310c5fd2c1e3ad09ed300ff7760b1ef43ea9879185a8bf6d309

See more details on using hashes here.

File details

Details for the file prelude_parser-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcb9587e966a14245547260e5c6eebf85f4192eb56d16acec492c7fe8ea07b5c
MD5 8528421cf0f54afc41c195cb3323a76f
BLAKE2b-256 39091a72d3f246f857dcf779afa1f0512cef26651d3657fbd41d6ff5492fa7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f149dbc26fb121d4f27f45433d756254ff289e32a3d1c74d48eb51a9caec4c98
MD5 974ab6b1efe69bd575daefff0ee6a105
BLAKE2b-256 4e9e62e4c68becdd8fe4431bf6f50dd63d3fa81013281328cca53620e941f32d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a775670613c3afea0c4ef4929d182f74c560d5a151ff73333f154ef207d180dd
MD5 ef1bf97e3940c5364a5d7ccc0248a057
BLAKE2b-256 7bb7360f6541350347a82edd722684799252980c63fdcbbcc182b86768abbf4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb045b081a2afe5a2a8802d13392e323fc4b7bf0e4d2d0e604753f3155d4e182
MD5 460ea7d9c543057ecb0839add8ae4f2d
BLAKE2b-256 41523114521a7b9c8b077257347d3a102d27c58b9f72f58e51d816ae8466001c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8a01a3eb5d3997ca47b20dd2ce815175bc794fa6be869d2e6f418bbb2f040e6
MD5 81e5db0041e4dfdaa737aa7c05700005
BLAKE2b-256 955f5f7e6088efd66558ac8df4fbcd2f5605623c1767bbf8403f3581eb95d964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6491c5b8d1b8f1f0f18a7093b288e401b95bdda2239254bbc549426c93fae6f5
MD5 eca09fab706b98cf3703e1e3ca3e6594
BLAKE2b-256 feb4b38987724c981e036372f1ba4b0bf5bc6d0800423f74cd5f37ef39de365b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9ff6c3d55dc3f064e036c2efc1399deb1b237c1d80e67eb0718f576d0a609711
MD5 3329b473423e685f3d5cd9218041c596
BLAKE2b-256 e0b3babf3b0761236c3a649cd33a565046e9802743e061ff324a1b65d6feb2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbefc872069c2c975e8f8d500f57acf50c32c5fb2c308b38037e2f3a929f8045
MD5 1d3c9a3ac0a4027746fec34188234c73
BLAKE2b-256 3b12a7614ceedc8b7be7802f03c8354b6fca119374895ea621813d532dd20074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddfa94810c73313466b5c4e4fe7f9d43dd54580c4bb54050f87afc0a58025d48
MD5 cb0bc705ff571f21305d350600ddbe52
BLAKE2b-256 47a86811bbec3818c778d80606f7aaf48bd4a058e1a2a13e43d93904d135748a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7c21ba6b93dc6d6633b057cf49e61cfaff347e9d8ed3dbf8dd2c3fc422d5cf3
MD5 e6ad746f663064b36081e69c06dae76e
BLAKE2b-256 5791eedb1dff9f5ae5b22c84a73e59525277d57417810206e9f05fbcb9c81979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d125fe9d2d3f0db69079e39bf812f41ad19bb5f88443d38ffde96631dcaacb7
MD5 aa6f9ac0f9fb80865ebf9e277a6edb00
BLAKE2b-256 51d456475da619884fbb57c657a81da09d83cef9c882131f834d285b43666ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7c81f03d4bd6449626c61883696b3af06764f6540d671c38be530594526b924
MD5 c93ffbaaf24d070b1d7b4bd6100a6225
BLAKE2b-256 83d009d8b0f0a27574bc4212f0814bcbdd716a8de2ae9d0cdc5332570e851ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7cc8a5a567b8980b13dcce4ae950c006e0e036198f1a8efe58204e45969d3e1
MD5 1552a9eb58f426a8dc6f577672b854f9
BLAKE2b-256 4e88fdb2bca545ef3b29e2c025831a136285c72ff14a864035ff9e6c07ca34d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6b1d7fdac2835c302fb4e25e7cc67fc099859dc19b17bf2e918333f09385c2c
MD5 8d0ec09a8c791d4862c3ac98e85d1b63
BLAKE2b-256 ba3f41dc0b1752190cad5a3782fe19bc021b4c019b45cc11a93fc78de4295682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78014ed366ffc745053c43ade4be3d3570b2dd3588d28766269abd3dbd284889
MD5 c6e1938e3706407291973eba2ba08f85
BLAKE2b-256 7d03d6d0a8a652bcdf27010aa8498100dc457ae691895a7f054862ff43939e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d48bc03c921e229ace7a5543ba0ade14d5a1c6f54f7441fe21cd70fe0450e431
MD5 9c454d69379ee556a953ab1ae78d59b8
BLAKE2b-256 6f677415ae1bc93946e35bf26f2096dffa8317f3dfa7daf424002e716654e532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb567c9bdde23d812fd00b725ce5cb220e439b44b30c3050fc0cb83a257e2e3
MD5 04a811e9068c846dc4a6e14da93e7a7b
BLAKE2b-256 0ecbfac00e5a327a2e6eb4aa53cb9512828906cf93ddbc36b288654b8fcac0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c69899eadb804ba487ea43d5f541266ba5e7916ea5af8529f17584824db5514a
MD5 e596f18be0d796276c5d7e0c46780ee4
BLAKE2b-256 3ed096d72a21eb2d1e76fc500b5c73ba867334017739b2a231f971b45eb87ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb80789f88d7a6ef6f82dbef7134409d01d47a542ed94651c0b1d07c85fd2652
MD5 af2e533a6c6ca5da3c95d68d78293dc9
BLAKE2b-256 505e879f4bb0407211ec233d7ba5b10c658a917d7c2bcd58fcde5b1c5e47105e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 121e49ec3f25608c0b97a2c368f95eb5fa61103058d3706975d3915fc700be47
MD5 fb23e2d2246e463c01734e72aaf534f0
BLAKE2b-256 cd8d9e5e25ec5309fa9a0000d4fd613c7dd58189d1d74e7b0c43fccc980de418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25676b0834e4f3da919138bf2ec8802b52abdad867891998d21d18d4b1adb1d8
MD5 907f9a27e3d0b69c9302cfb2dd1dc6f1
BLAKE2b-256 7a9471d54645a33ea237b3689c00381119f528cf92e4d24fd9b427834cdd8f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27bb59be140a14d620f42f1dcc4d6ecc802a2bc4f1c251a6d65222c486640822
MD5 ccae4d802e86d418d3b314f346de3b7d
BLAKE2b-256 fac5bed446b5feb1ea4054cb2b30c601704dd73ea92e682793ffb7669292afcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35d460b44226a8fc46719dcda2a0e898f75a6c940c3d53559851d7432a66e88f
MD5 3f3608d89b72ab233730101be34ae82e
BLAKE2b-256 982ab99d698210b6dfbb556e50554f33783bdb9fbc6941eca0a08f7bdb7ba366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5c82bd10292fff999a172b130e2a230aa34f79c391a847adbdcff6ab7c52272
MD5 68f1b7b4b7acc28491a30205e0e3d9a2
BLAKE2b-256 216f46aea8de61c7cb589add8fdba278a8fb74349840b489afbd4bf7fa82e6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1e45c4e1523993aa266724db5138f337c510b2da338c25ed040569d76ee8a41
MD5 02f76e4adb77312131a7423a8a508210
BLAKE2b-256 a393e2d04e16627d5b6dbde7b99952ab6977e282d7e6b1fc74cb69c18a869c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88a53daa45af233776efc66bee84d7a833a84003a80a15f8124e6367bb2df95d
MD5 6370612778f9a5a366dcc3c30f0befbb
BLAKE2b-256 41ee5fd76d3952c38eef5272a752791a0b15380265001eb3ee4fd17af3f01410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0e451054f164676b727a9542b9978a2c478192d16cd3e76dc4e2aa7cee5a486
MD5 ec88081fd450d008f1414bc08212dcec
BLAKE2b-256 6f1fe9a17552245d04238eec779f9a648de255ea9e1e209cd0b0d90290994df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89707b5ebf3f1bf7c8c6d7f3588c652ef9c5503dc24e99533ca226c1db8792c3
MD5 2ad3e650162bbd3d1b5d648ebd30b672
BLAKE2b-256 b7065281f5b806e6dc69d77ccb466e3142482f1985968466a59e116e2710a9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10a7c63a6c73fc9bad953ba3d11ef3a22a60c1a71e90a224b3a78b27b97a464c
MD5 849f2ed5edcbc84050dec92a60262fdf
BLAKE2b-256 54207e207e58dd74dedc686adaeaa2f67b15f4321afe5b565d32e14a67542dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7074c0dccac23d7c697ecdee8f22864056abe48b4e676d0c6569d224258f2eb
MD5 b900e03389c3e1809897b83e0212e1ff
BLAKE2b-256 f008682b9ffe3d6d9f536eadcd4e87293ce302e6d0a246bda814830f9c675547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33a54b0143cb212d795105c87d8f38faead167801e09d350dfb49236ffb56705
MD5 a1fcf2d373b94baf56542dd10962301e
BLAKE2b-256 3d9647997b5e5626a40f6c183d75cdc48d3481402ed8685fd243aa5b9efb41b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1a66f9e68fca61dcd8ba0a5dcf33dd518ba7872a856712c719be1b2c58f8a01
MD5 d2bf81f6801b873a98d28937632d9118
BLAKE2b-256 2bbf8a7ba93bcdabb851541db2c76670ad864e6ce9b93de256bc2b3b0fc2f107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edd871d4efc8eb7dbb8c9f9c47bcaaa21f6d6c83122f4b2d575c1d40a89485a5
MD5 cfdd70b6c2ec6fc58efa1b495ce45338
BLAKE2b-256 afbd4a7c4223eb36a12bb9cd1ec1ade35aeaa53dc0673a7c478fb271ac55b242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7623d265381cd72ed5bcef3b7b24c522ed887dd0ad865582eeed16550784a6e
MD5 7bcf27003aaf62e6eeb53996e107e450
BLAKE2b-256 ab5c1698bbde1100533d4ecb1994a4c6621e0f5fddb24b090a5e018e61c72ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8f7230d77d4894162543360acba9a8b7e5ead2945261550aa5e7750bb3ed3e0
MD5 f6c8be29ce90368c329ab53bb27a78ce
BLAKE2b-256 778811623b2ab7434dd24c0b81be73b2bd760b9dabcab002e95f3991b01b204e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22a4bd0e8fea95818010fd1c5c04ca33e4147e923ec776984c6d251166215dc5
MD5 39461cb3ccf9baec95477eeb6a7e25d6
BLAKE2b-256 84123a2a4c468aee2a21c28ae71c4e8024f52cab802951d2be65f771f523345b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9b7fdbaa47d5752e1e7ba0558d997af3e61a222ab539552c94b1e7069b3a46b
MD5 3130865bccf85daf54d0203422553e16
BLAKE2b-256 26f0ed299911275282d76e69efff7f8cca069e089a962a0b7965dc12e86c12f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2b8c4362e4a3e499dbd7098b8596af271b6dd7ce9903128a613e28fc9f5bc15
MD5 43ccee364f2305138b50c74e83ad0ae6
BLAKE2b-256 09a658eb4951c5c7ce78821bf5dd32f09ff35f2681d7c6e49a5a1628356869bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afc3854ebdcc09cdcd377d992f14e8f06afb359c9c73849aa298b0eacd930294
MD5 e899ab645d66a75293fe59e52cb2168c
BLAKE2b-256 a2d51580e651eb1bc9e30687dca92139e661a8032be20bc3d2b82c00e74bf22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de0bd503d4910c18759f33f0ca161c3db1fcfc0f519a8f4623339529902d80a7
MD5 bd6c2ca29cc4a4ad8a992444c95504bc
BLAKE2b-256 8e0fe265b0e75257879acafb8620c61180a3926cb22afd333c3c7e543216d14d

See more details on using hashes here.

Supported by

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