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.15.1.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.15.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (635.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (788.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (633.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (686.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (631.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp314-cp314-win_amd64.whl (465.7 kB view details)

Uploaded CPython 3.14Windows x86-64

prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (678.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (679.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

prelude_parser-0.15.1-cp314-cp314-macosx_11_0_arm64.whl (582.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

prelude_parser-0.15.1-cp314-cp314-macosx_10_12_x86_64.whl (585.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (680.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (627.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp313-cp313-win_amd64.whl (465.4 kB view details)

Uploaded CPython 3.13Windows x86-64

prelude_parser-0.15.1-cp313-cp313-win32.whl (431.7 kB view details)

Uploaded CPython 3.13Windows x86

prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (628.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (680.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

prelude_parser-0.15.1-cp313-cp313-macosx_11_0_arm64.whl (580.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

prelude_parser-0.15.1-cp313-cp313-macosx_10_12_x86_64.whl (584.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

prelude_parser-0.15.1-cp312-cp312-win_amd64.whl (465.7 kB view details)

Uploaded CPython 3.12Windows x86-64

prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (629.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (680.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

prelude_parser-0.15.1-cp312-cp312-macosx_11_0_arm64.whl (581.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

prelude_parser-0.15.1-cp312-cp312-macosx_10_12_x86_64.whl (584.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

prelude_parser-0.15.1-cp311-cp311-win_amd64.whl (467.4 kB view details)

Uploaded CPython 3.11Windows x86-64

prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (635.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (787.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (631.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (685.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

prelude_parser-0.15.1-cp311-cp311-macosx_11_0_arm64.whl (585.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

prelude_parser-0.15.1-cp310-cp310-win_amd64.whl (468.0 kB view details)

Uploaded CPython 3.10Windows x86-64

prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (635.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (786.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (630.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

prelude_parser-0.15.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (684.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for prelude_parser-0.15.1.tar.gz
Algorithm Hash digest
SHA256 967741d045d497b94cc6a7ebd24b587719e4f2f6359117d4ab4ac8f07834cafd
MD5 1a3582daeb635a97929253c36a7a49f3
BLAKE2b-256 8c61c1faec1e66272e2f4291127264c0dcab6e6ca20417e51c21e6ee1e71ee34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d98eeceeec9ef17d3e4bd69fda65ae9eb6f08bf7db34e7fa41ea0dcc9f25d43a
MD5 ab91329042df9914c8025870b655293d
BLAKE2b-256 73d453e2e50fba5fe52d548f158a1d82b6f1cf59f4a16a0b59cb58d6a6b5fa43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c517f94f450f2b12e08e7bef665e9e4bb946026a34676481938ab73aead1951
MD5 19d78dec39357c9e1d1ddbdac203b751
BLAKE2b-256 dac724e773f1f67dd5664fce8e2e0864a32c3cd68c9a152d8e51f30b37e6e155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f2926218a4b924f61aaa3b37671738d47c71d2cb232f3630ff77d587efc3e49
MD5 3e2afac88c7628d39886bd73bf5e645d
BLAKE2b-256 729fde659ab5a83867570f2b566d31bf70a8e49dc51eafaa754a7d6ff6db586b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a970e7380aca47200ed76469c2554e8030910bd5f2883d3028c08e41a83403c2
MD5 9cb68148033cb99a8f1f6646b2e56db4
BLAKE2b-256 81c6e237bf6adebf381bd90e88d8634dd14de37cf70e753347dd09f620119e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a08e5f321530906197c4578ea69fd100d57dc2a9e4e0c8b3333a5a6a5de96c3
MD5 968b433168a0a8d8989ce708ee251958
BLAKE2b-256 247cd5f3de043c950b33fbbb0d956009245fc4077e844fd96da4efb579286cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 955a584073b6d60f7e579b1577b936733ab52fcb6d28a9254c37e663817416a4
MD5 e24b8c1976fc821413a5e154a734c73f
BLAKE2b-256 320cd9d61db26b41332674e9c704ca4b56f1724fb652d6671d46f8c13f4e5cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d7cb8b0f892d89ecbf218750313dead437ec0c1bb1394f0830a70c5ed272697
MD5 299f0a1452f1a7a4f9563f815684cbed
BLAKE2b-256 3f6260656adcd538842e0e9e77d5282e30662cd2686cda6634ba95cb652de7a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dec3546e3e856d2c9a12fb2e0a5abc5fbfe1b34845e8729cb62cc6519a421fbf
MD5 e571479c231ca963d62a21969a7b226b
BLAKE2b-256 ae76e19382926c55cafe9590019326a0542cdde157330e12335b46f4f74a39e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a50e72f4bdad43c1709df199114d42037a1f98b3b39f16bdd18712745037edab
MD5 f76777136b2d316f034d9ecb982f349f
BLAKE2b-256 7fa6192d980127219185b2debf0ff9c6f26de4e29bb93bc451b1aeaaac4fd96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d743a7c26b3c2c14b77e92a1bf7fdb2ba397307411eec5083598898a031a4811
MD5 14a981d6220b251d2fc4df80dd9c79ed
BLAKE2b-256 d2be640bc9a021e22d417e998e49c4bd1fdd419f5c66b5329f411f7d8f71a19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a1e4fdaba9f9709d9a65e07afa67bc53cd05664ad84ecb4bb520168a649191e
MD5 c4a9e67664fb18114611cec5f3550484
BLAKE2b-256 b72683cd3483c1ab3d6ba9b8ad84d1e6bfab5869967cc97a1efcad726fab4b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 474ae69d7d9fa8b9e919ca41396aef7dfeaebb561b358933f2f0601585a2fb72
MD5 893afa61ea9b99f555b2af6ec6dc76de
BLAKE2b-256 78432a5c1119c494668ee66c8e305bfa0fa82d8b76d7bf1741b3719d905c8036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f4a99bfa1d807200393e9f52b863a21b9e78e10d89a2a40e4c8dd6c2b71be65
MD5 0e8791d5471127f87cd2c4cd9cc725ec
BLAKE2b-256 23e1c012878ca42d0c153d974bcf483797c9c22827dede58fd45bac40102b181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adb9afd462590a771b619b33aa0fb93167ef4f4f9081c6e213b868bed4153d92
MD5 afc564f158b3b0e5c42a0eb09fff45ca
BLAKE2b-256 748c9137741f3f0e76669c00b35799f52f8eb37abd1c1ff20c2307fbbc21a3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36fd32368bc8ee8c23bef594ece0f6cba29c11cc74befe086c25563be228b6c9
MD5 06ef3a0f803decec7b490edabcea3386
BLAKE2b-256 c6ee7205d60d18c16e2abdef4e93c8e1a3cc0bb981b8168c868287810cbbd472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4c8249b00fca21de7d08d55fa45e8930d139efa92b9a11cfffcbd543d21c307
MD5 89416b15cd54e460c4bd4e28709e2d3e
BLAKE2b-256 39b122391f5527cf74449c5c1530ef517f34d4218ccbc298563e09542597b297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e676540f80892d83dcf8f79280ad49c11ed8422b0522fc7751ddcf77f88520c
MD5 2944534cfe6135cb647069d4d91a6380
BLAKE2b-256 fdf5c01b5e8790716b2ce392aed34c2352b5dbe268ba3ae875a006019a32100b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f69c91a923c127d9e2b0377b9f425d34b56d49baf001f4101e4ac15c812e30a
MD5 a11c201807ca48c762b898e8702a2389
BLAKE2b-256 3e1ba0bf9e9340ad528d8f3e02517534adc282e3f3ae413100ac47970c745fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 187262fe4f169f4d7ac87728faa52ad9e8b77a9b891d1498093da93dbbd2c73f
MD5 a595d6c35af976cf7d1a60fcb65f7454
BLAKE2b-256 22263a241355eac2a18cff3a0df2982597423a0ed0e59598c531ad5e68ebf77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0900d60cf4f607f1046906db49c11be7832039c1e3088e91d82c47c47aed17c2
MD5 2e8d7928ee5df746b2f53fd5e1b917ef
BLAKE2b-256 ebfdcbff5d9919c893f524d17cbedb535d87a4a2a4152c6c6aae30c745d70827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca878bfceceb539bad43fed98e4ae2d1dec67c748db48b3795d24fd2cd4257fd
MD5 775510a4860e0b407d0913c119359129
BLAKE2b-256 31360f7e00172c8fe417dd475c2c57b1e42a57a2a8eeb8411b63acc7c59b703d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 773a8beb1bed9bb506e64c8c64b7b8d78e9c7878958ae27f46075f8eb86b9cd5
MD5 26aebded1c429573a746e4e444466cca
BLAKE2b-256 d52cda3a27d26993abc254737bcf4d3d04db60dd4a92f4020046841f17dd6fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43df9ba6ccc8031b3cdd417ba46a3c2133285ad816e73542d4d402ae4841ab21
MD5 a462dc61774ba2b1e95495bf3ff3c5bc
BLAKE2b-256 80dbe75147039cdd0e9dd63dd39d3c60be843a355c0c337df936e22edd1aae2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a9eb7afbbff3a1a2cbda1612c69acf473a8c1983f0f6a230306dc5758ebd202
MD5 86813ee640c3343d816e12ff588d82c4
BLAKE2b-256 2ab7594cd777473b3a4fb9b76e4b283d63d34b13ef992c3f151ea2395777567f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 137cd57ca6ebc59c50c84e45fef58d888da5c228969ad44d0afdcb085751ebe1
MD5 d0f4f0e8f3f05a2bdbe951327d85f01e
BLAKE2b-256 727bc57b40f677d5b33eee10009de6b954230e1974e9f6bf619bfaa6b0ac1bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7518d18c0fda5c6df5ce73f9f3bb55e3a061d393c41f43287e1261ebb6c712c5
MD5 bc9b7601e26e486d86847031e03ff3d9
BLAKE2b-256 f926ae0573232b4a165741b5694346c2a86565f8c0be046c98288b370a4c2c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d32a95e99a340305f39ebd922d33bbb3b5369c2583ada2be90b26f63c854ec04
MD5 f581ed9768f8ab8cce116b6973c2cec3
BLAKE2b-256 9cccc43d99326f734651e7cb20d8cbe5d92d61deaf0ac57169ade0ea3cbb44a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab9dec474c388d94f8e7cd9f9b6fbb7a108064d08d34984e0c6f7f2f5e04f6de
MD5 f3e13a5acd6053b6aa30c4ae257fd048
BLAKE2b-256 811a103b5a35578a53a2d26ef707ec1f1b848d0121c0d41edca2a7075001de38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a162db9466451675ccfdaa1064cfc13e1dc29a822fe2a76a4a8b222561d3f6fa
MD5 2e948ec732858f4d06ec25d8b2c69672
BLAKE2b-256 436a3ce03f6b7d9a7e21c6eb71747380cfd88bd6628a5becb4b04b60560116a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 660b841eb9398e3082d05767a5ff70000cec49a1e129db43f1a2c9a9f8687239
MD5 6b967d2f924cefa0d01b8dd44445f961
BLAKE2b-256 231d41cabd2da7de4bbf09fdb898ab7b26ba41b82cbd315a88822632a49f4e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b080d6b50cf21a6cf409d4cdeb9977d9a977f73adada8c21630ac6af7c989457
MD5 d7fb5cec5c14a6ed11d192d3619d695b
BLAKE2b-256 f311dabb3bbc89629a463f75876b7e3858d07b33923791b65804e1f475f33218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9304792c163e1e421e94b0b65c5c561299ed71260443271570f565a4a51f146a
MD5 9bd25c43ae03929a3457ec05a64ec4ee
BLAKE2b-256 4ebb817bb156f91e3490b9d90cf0b0c78427b31a0fded470f0ee5138e53ce093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e5446bff77bc4c1a5a71658653f7359ebda070949be096b9aa5dcb09e6f8060
MD5 d7586991820483fc8bb70b4b0b3f7189
BLAKE2b-256 4cd66da5bdd5acc2b14099161bec361dbda1096068ccd8b49d02c5ecf37c77be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7913cc6c48a156069c89335ce2bd70886cacf9f971ac490647a62d0d0ca766c1
MD5 50c3cf3971c355679233d3dee5d43a5f
BLAKE2b-256 b2bd64af68baf00d144d143c8ce2614de4fbdade2c87669bee66384047029912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de50f7d39822617fe85ed6181b5bcae8e6e02dd881fdd4d98f0371d906d9ab27
MD5 0e33b2b006498708454e02186b71bdfd
BLAKE2b-256 fc2cf94ce5d66e98061156b7b6283fa4ff7d49245223fe446e188c7dd80a2f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8babbc4cfcc48b65adc174c823b836c9ea24739c7c97499b3b992bb241a07185
MD5 21153bde8f1eabe3c9cdb575de4f9899
BLAKE2b-256 a8f180a9c3b88cfe8a5b74b99d6e069ee708b807448e9146b3c73ef72e6ef6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f7045a806fcccbd29ed86cb0b3d25ec36b489f6c2706c87f1f783a2c3c795a0
MD5 10651fbfacc516fc82327248f634e652
BLAKE2b-256 8cfe98167ab8b5de18720bbb024db0fdcaca936a7d9df10a466621bd8c9db9f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37ac64891be42c60977b6f7efab142a11cf4836f6b4cbb256dab9a4ad6649007
MD5 064bdaa3eaa87a8883aff9f61e1611aa
BLAKE2b-256 13096fbd72b83f7746f0693a1dc8465a892798fa536cc91cccf7a353d8705f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5adace6d9a17ffc0a7f6482338ccbeeb9b70efd9a1082dfa523c994ad2f96324
MD5 a76f743a382c7a167afa8a25f50e5688
BLAKE2b-256 550c9cff92287946d0c7618eb8342778377f85d0ccef9e5fd0e1460cccf440b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e3168ce9e1f4492a0dff05076d73bc0e94d2968251bd288ed20b11edf0ae049
MD5 d70113bdccbc6988112f5a443b18c16c
BLAKE2b-256 d7ccccd869188c667a5b723e9ad77c322fa327ad06f2485bf292f02c79a89da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf7c8b97f0afa3fcd06247c8175dd2da9b74527f7bf6db04ebcb07042f55baf
MD5 56bba1f218eb77f75a70480a54b5260b
BLAKE2b-256 5957d3b5c0b889bc59a1de0a60eba10e9c7ff719f7298f303b364f16ffa96639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c4b2d810fb55d3e015359277383a09e89ea7bb64829b1beb69b3ecd4e4912eb
MD5 cae1d68ad428e16ab864a32ae14b6252
BLAKE2b-256 520928ac91614625c283196847426ce5a8da0bdbab78fc9fa0f1b13e3e2e0f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6cb6b5e8f99edef9efc0ac7b6a60acbeb1154ca12884368dea96b75490417d55
MD5 5c89bc16a4c4e8e17428a64e6cd87dca
BLAKE2b-256 4166ac1c0941bc4f43b08cd88f4be0959cb48342ef2aa8fa66b8e25ff80508a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fcbdc0a3b94f8555fe4feb8a5c590b2e088f74d8ede8185998d2ebc97ec2716
MD5 0ca69eed4c42b430cde35923c3808d26
BLAKE2b-256 d70195138bf4287a14a21b41d89e525e40a4acf36700f64bf12f1f7e7e1a9619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e27862dfb545908a3713e0ecb80fb41b45a7ac4696a5dbeae0b913de17de996
MD5 ffc87761c8cc1165616db3700134c428
BLAKE2b-256 1d099ff882a14b90fc174cc78b6e5892e7cdb01567250a1efecee57f86a02b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b3bf99669c7a9391fa1cf1de204b43d9599407a5250aa6ebe762b8b79b0839a
MD5 3183c83e005756ce6e0b0aa08a08de85
BLAKE2b-256 bdd34e42042bb8531b4be8cdba6539dbff1aac5b2564550d3fc50722b82c3228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c00fe2f5557f5911b1344606f1b4d1288f85dfdd3ebe1d9ac62a99cb4b42b083
MD5 0b782b4b617a25be56e03a93afc1e611
BLAKE2b-256 9489d318557397ebec13688e3092ecf765097443c24dc63c3bb1cc282030156c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c939d2477cea8330d50cbf8aeeadf4cff40ee4ddc84b07ac7468ebd57b6e2ac
MD5 52e7f232a518357899a601f17add30c5
BLAKE2b-256 20790f338e2197392c9b113c0ee2d623595cb0dbced25cb8ca0ea20b1d1e64c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53a8d5bd19ffedec8ec51bbc1191e18210ce6174c6bdeda6071aa9a5d9faa907
MD5 e5a3b7c500cff6e06445c6ad1359661c
BLAKE2b-256 50220eb537cce886e2be7b7af44a0ec7bd0b34d92c492c4bd580b9615f51bf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eae2d9ef0c20ed8e8710a0165cddeed07df3a5b4903b828290fe1235f4029dc
MD5 602ba266ecacdba819cfd24a5eaff5bb
BLAKE2b-256 28333018c25b7cf8f3f88ee0e8a080bbf089e64c961b5d4d4818b6cf48c7c038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ad631073c72919b95920eee88d3f136894e18937dec14882612f3a0ace6765f
MD5 89d1c689eb574043a9fab2c9adf19362
BLAKE2b-256 38e3d6de0895fdbf20faf59cfb4b7381aef4739f37604b241cb0fb0a3ab86aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87b738b1cddba6baa476faaaef303fed363a1aa3776463f43d27b4d25802465a
MD5 8718be61403d31009bac48d9bbacd654
BLAKE2b-256 41d9aef45f67f6100660eab329638d683a5ba14780d2931619a8c04e70dd2944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2077672c627ff0431afaba5d000a0aeccaff2c6ba8b8b78de35fd7c7c16b14b
MD5 0a35c3b1571b1a16add859d2cf403092
BLAKE2b-256 b2fa9f48424d4e910c02d9eb1886cceee29dce2fe7470e4fbb188f086bdb7fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cca24e80f1091356fb929138304ee36b1e232d619b69911a503794ea09c7ee1
MD5 aba9605382d9de22fd29809063532d56
BLAKE2b-256 cb6f594a9a4d9a98d63f0fe687191732691bb8e445ea01d7206a4c3b0f213067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48180319cbd0a378332e09ca39c04d7945962740e1d34c8598ca94d5a7d26cb8
MD5 f2f42e2098e67517e62bf450d951cdbb
BLAKE2b-256 7c812d5d4ceb79bbc20d926af2000e47e9baf8ec5b4dea24a99205a244a869a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 289e02daa57bc6c58bcbd859c9cf658f9dcc3f1be774311dbd9bbce45ec637f2
MD5 10016fb8b4ebeeb643fcc09fdc95b59b
BLAKE2b-256 bd9a6be920384d342ab52b1c4a26ea5b2447358ef3084cea8a3f8b3b8dfefcf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7284418e72d80ddb9d86fff54b76e313355ea8e0623632531c2dcd11069f86c3
MD5 2ea3088923cccf9cff0947d2c904601d
BLAKE2b-256 3e89b7f0399a45f53a7667dc3aac8e98e6516d3b75d2e6640fb0f977f0c6de8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.15.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbe37aa628f5e432ca11858800533285a90d91fb9b3a61829977250bfd09ef5a
MD5 fbb29a8998f0709b5efd379c9970505f
BLAKE2b-256 b13c9852f1c16ae713c22d55b05cc06fe02b295eaac22bae3b1a3a027fabe827

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