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

Note: Pandas only supports Python 3.9+ so this is not available in Python 3.8.

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

Uploaded Source

Built Distributions

prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-cp312-none-win_amd64.whl (374.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

prelude_parser-0.5.0-cp312-none-win32.whl (365.4 kB view details)

Uploaded CPython 3.12 Windows x86

prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

prelude_parser-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (492.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

prelude_parser-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

prelude_parser-0.5.0-cp311-none-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

prelude_parser-0.5.0-cp311-none-win32.whl (363.9 kB view details)

Uploaded CPython 3.11 Windows x86

prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

prelude_parser-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (492.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

prelude_parser-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

prelude_parser-0.5.0-cp310-none-win_amd64.whl (373.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

prelude_parser-0.5.0-cp310-none-win32.whl (364.2 kB view details)

Uploaded CPython 3.10 Windows x86

prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

prelude_parser-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (492.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

prelude_parser-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

prelude_parser-0.5.0-cp39-none-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

prelude_parser-0.5.0-cp39-none-win32.whl (364.8 kB view details)

Uploaded CPython 3.9 Windows x86

prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

prelude_parser-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

prelude_parser-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (492.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

prelude_parser-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl (498.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

prelude_parser-0.5.0-cp38-none-win_amd64.whl (373.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

prelude_parser-0.5.0-cp38-none-win32.whl (365.8 kB view details)

Uploaded CPython 3.8 Windows x86

prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

prelude_parser-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for prelude_parser-0.5.0.tar.gz
Algorithm Hash digest
SHA256 79149b54e9a49df47d9f97595125829e655892d9d9c23c8a46f94045a796f412
MD5 8ee822f3fe84365e6fcb4226cf07b8c6
BLAKE2b-256 ecedecf9c2dbb285dd844ee56c6d0a12e3423d84da8b683a4076112e01f5520a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 850c311670c684ae656a610a4cf4924a3c7b50d2ec612bbe9dd4763cd6cc0c52
MD5 55e8477d0f7695de321dcb63605e0023
BLAKE2b-256 d448c810da785268848a4d0a63dc8ee85e0f64756bd4eb759178543360834b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d703f702e836abd5f6aa51cdb266505a33f512bae766344aa7f75099ed246f06
MD5 1435d3c00dd1e185c729c2e957f3d26f
BLAKE2b-256 5021fec786356fa1afaf66f122e52de60d6bc7b45e023136d909646bb85c26b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daae53f3876ea1524e9d7c2429cc380346606f7452592bfd8a01485056ceb096
MD5 6d0c5089927da2cf2056de281bfcdf4f
BLAKE2b-256 2072375c4a7f68d43e52e5e6e96cfa326427f36880b2d9e5fb85b54d5e4c59eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe20ebe8a63560d492259627c79519d991b736b0b0115992341ff45f864be93c
MD5 416aa8e05d8d33d46923399ce5842bba
BLAKE2b-256 257265675c688c3ac2906e14be03b3f107efbefd2f7286207ff5ec7aed12189c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1de36534d25927748d544a88fbb8929a981861d866b7303fc0da5e9e61f09db
MD5 5e6a6dde95fba595dfdebc74285c8826
BLAKE2b-256 d6a554279660be18038898149ae5075c822072d9fcf1cd6a20d7dee0a9c925c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b20f8221af6d542be55483301ebbec35d67a514d6ca91fde3a28624c5792fa11
MD5 5c19badddab1a551ae569ca376419d97
BLAKE2b-256 1fec740e502c2f66d3e56205f8607eb0afb390508b4f338e11c0d58c4e958184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b8b92b9d66e22c36132fdc85d2377cabf24b61ea53b87ab75591a4b9a08ed44
MD5 9a030ae856fb67c2d8c178162c978ed1
BLAKE2b-256 438f21829ad0fa59eadb0c628027cc8f176e83ef1ea11559e2ab9c393dc4350d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 861743d71ad8862d8dd5713ddf057f2754606ae5ce4711c1bce636bf630ef584
MD5 d56331adbea08b9be1718590ffb800ed
BLAKE2b-256 34f9813535f98c7ac8b8cc156e939b29af309ac31e75dbd22f29814e57b0dc59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bbea07f1ab02c9677f33c9ce2b7279a2e0bb863231ab4ec0cecadf504f7e636
MD5 68f313869809053f6e4906cc92f907a8
BLAKE2b-256 0a6da67e81f3e6e77f093f24d3134943e53a285a8363867d3187d93c151e77fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4d4cb74dbb814f75340abe5318bc0632ee3070deb74a930e0532b249181ed3d
MD5 17a98c6eaa5eb4e9b782bd4c2a326bbc
BLAKE2b-256 b577c5a9f1e6e6a518d7a0976156551916aec2646fc6b832167f9934a8e33cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ccff27d2cfd0204ba45aceb5fb66b2f1f3adbe18e37fd344a61af303d4dee5c
MD5 8b19c74bcefc351d50b54f18d6a2677b
BLAKE2b-256 3b0075e620a90b9325cc36647d0d41daed77030d0e2dcec529892930f27ead63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 324b84cf528d94d6b60188394a28a2aad09caec020a73f9a974676b5a0337d59
MD5 baca8c0b40fb3c220c0dd324c8951f36
BLAKE2b-256 9396f078efe38a78a8d9f47cd8b7cafb08fc74c811b575a9e27701581d9ad244

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9995877a9c9b8f693b3f4570ecfe4b2358fe64657aa452cb6405475b2166626
MD5 f53a842a8a0dbd020f90521e5a7988e7
BLAKE2b-256 7cac452066f96dda043b2602135f90a04776a49487410030683561b4af5a7ec0

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ad6150888697bb93ff955fff87a962bb50744aad1d8f35b0aaad9491c88f4ab
MD5 4dbe669aee95618834a94df06ef77c19
BLAKE2b-256 8963b80e0d90d8020c97eb4114b9a67db7277e6578193464b02565c130baf29c

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 051d5a5771a13e46fa3c31c6d521b820fea13df835abbd267584ad3392879a19
MD5 3639ccec5f2c365881cd4b0080937ebe
BLAKE2b-256 ccd43e12fffcb91086b0ba241ce1197f25dce3e6b3fafc915a10727c8495b872

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d3f6fffaa98825ca516e39eff2eab6104c4f5000378c13657f2ac6c68eb5498
MD5 bb18086ecd111655e4b289cf8b03211b
BLAKE2b-256 036d865902e72a93c86f0fc862d9f509a8b96065234cd12fecedb8ba05a0bd89

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2249d7649c566e05537b71346219e2d4960790cf1dbbfc870e9c57cb51246094
MD5 135a81e3b80b010210f88289d4672eea
BLAKE2b-256 dc551e658d00f53816a2a48cb9e350fb569f619c37aa6533d607c57a739803de

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39894f8c6f23edadb9305cf7c57dd2587118c1c0c653e9db18c0c2f101a46e5d
MD5 e35e06c1bbd38ee318c2e14683a7f7a9
BLAKE2b-256 05f38de83b927eb6539c03d16a219bb2cbcffe541bda1ddee11a89471a9a194c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f05d3d6ab356696172bb4c908250d63386e5e2be03afe47163d4d544f2f6d4b4
MD5 ccafe7f63987f8bc249c3bbd21b4fa3a
BLAKE2b-256 aff55ae0ea0e9053df3fc93df17ae174793b37e25aa165df345e4c58a981793a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 bc7ebc59ba02ac9746a639e0b7ea027bd8caa491d07b0efda61866efdbe5b34e
MD5 19fecb6e515a122dbadfa6fa25b5c2fd
BLAKE2b-256 63b68cc44bd12a1275d75585c3ec4daaf2f18399275539bc4cc8d6e7f097d95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20820fa71932f1a0d56ce544099d79efdd662af8e23772f092298e9d3eb6372d
MD5 95f926a01220db7f3f6974a9488c052e
BLAKE2b-256 6902362e6a707798439621a0809ee5eae0cb705bce549d2357eb6a85d6eeeb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06c569d24d69bff029b28f98dc4a9bdc7d9fb118627dd90cd5e2f4f7469707bf
MD5 ed354466bcf631b40a02867400fac18f
BLAKE2b-256 9036b95f89f84f91783ba8840d3eee02f59346a39fdfb593820fbcdf32ab4aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa84a7c6a13183a348cbfadb0ec6aae8ab040d7e33728a3ef86b6e47921c9e6d
MD5 4ad5af3acb031f86410afa1f74aba5bb
BLAKE2b-256 9941bd7c59ae5b0748229ca8d14a2ed63adca523a02b88f152c518482f028645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dadf87ff32e67283b2558ef3cea33b565d34146b86a4e78501229785bd4388f9
MD5 a3833fbdadc9b2365c4d4d5d269110ac
BLAKE2b-256 e9842b862b29c39f549b8aca103ca41b547a8604422e6e8f6a01b149bcec1fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8e6c953dd62f852ecac3fc3738fb4bb86bd92a00bd45c2b8170ae95003009af
MD5 e082e1e0fddd838b1209dcb4f02a9cbc
BLAKE2b-256 d49a25288d9426bab935a8e336ce410542fd5375953e5594a8d4e060c75dddae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8b2129ccec3d137ba2bce85995044b374f55ce378e2f838eadeaa1e9f3e237c
MD5 b839f7fa352a7ea0f7b5acc0744f5cca
BLAKE2b-256 05b83d1c55329556dc6ba22a64d25557ed53046b317773ac19bbe3cf4d7a1080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac9f6a93be4d671ac5a6848741a76dd9dc7b25f8cce4bc0c3e41a23935608a90
MD5 5455391cab25c8a80fb5668d9fafab66
BLAKE2b-256 42bd8ef2f581bbdbd9aa4d08f33ac302784d797eb55aadf34d234bbe63ea7765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fba5f62306322b4ceb533b83199f33eb83b3b71210b442d4c99b9dc3e9277f77
MD5 5dee1658a6d2b18c44c0a6a1f59af72f
BLAKE2b-256 7d9f98c2e2c055d3b89d31fb2ce4db4c47d76b8ff3c30ae2ad5679d658c207a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8b5e5ce1ba3276df5b8c660b099736199d6995d93c80ee655a78463bcad75577
MD5 e04b970e44b3b740ee5ef269a597e9c3
BLAKE2b-256 e2fdc9f0162eb13c508707453d93b9dac0810a082d91c5cea6aba1fc1896e94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0964888f5f3ae2e698b5128c4a05a63ab4d56e18209ee5ab03a2f3938f020254
MD5 603e708786b85ebd6f59f31f898fba91
BLAKE2b-256 0e092e6e220a7d5e5e77d43b34be2a98f2e82d7b136566b88993d2edc00edafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 694ecc713860121629254f2303856ccfd1355ecf55683430a2fd1da9408783d8
MD5 f5c112772ab3a49496e4df99a7709b6e
BLAKE2b-256 0b87b3a326da840f4240307cb67a0a23d31195043fdc7bd3cd834f14acb0f2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a0db81802c5f05ed8df2d3959f8937e05d40f489ae9f5d93502125f5e3a62fa
MD5 0529cf8af6a30bc5ad168f1c09423d09
BLAKE2b-256 5568add32816f65beda8ca2a24678501ca93e4917794aff2ee994d1464c3fbd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea44726d03759918fcf78ee66b65747aa8b1b7a895c0a776f56ce89cfd2e57d0
MD5 4b7f56569b29e1b628b7389fde8b66f0
BLAKE2b-256 8541e4b3ee94c4fe5e494ce7500a808323bf82f0bee14059829558eeb13c9a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0911183df12c525f74b8a2338a3b3c1cf09ec21752f93ed597366ad219c90cae
MD5 5e143f372a97e19a0b7fc0dfa8604e35
BLAKE2b-256 3373e5a3ca0be47dbebf48488dc54d581fc3a7b54715fe581e21d0b7cebb3244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 213a85da01a5fb387cd741a664c19cb5dd97a0401166c594508fc6513a1e31f3
MD5 2f4e09f8eecac60df53d0d74fecb1ab1
BLAKE2b-256 147323a838ef2afac0a4d5e0094a83b7fce0529898f9847d7e4c55de3646f367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32649a7320e5348bfdeb9d6750c85cb51f8dd39ce21bdc1090e1c4bb69c1ca57
MD5 6be09fa7fa966ff7047c9d21151ba3fb
BLAKE2b-256 27e6b610fc18d95dabdf893dc6221558c6ca5816b308660a2db65cac294ede74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9de721ed15f31619460c1e1f0cf22a8342bceef67b3a70d6fc7059ddb08c64d2
MD5 08b3a10d73bc72d6fb13ec24bf3935c8
BLAKE2b-256 168e498c23674d327862e37c8bbe2acf9291618737ec9bfd6a3655f4c7100a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94c0a525d5737d7a87d69e99342c3cf2a2521fcc78ba073b47197933e9742883
MD5 4eb12f1346bb40cecba45bdd2d5f17f0
BLAKE2b-256 916a64f8a92372d12c4bb99b3a94dd678f2ac959d21c64e7f7e25536db8c31de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d001b9078b027d0341babe0bfe5bd60e1a09128a215ae3a95ab9fb7740ee3202
MD5 8246867ad329ae37baffbe7b3d90cac2
BLAKE2b-256 8690eb59a9b081b17c1f22b6ea090b73e2a03f4c9088928a66ee1e97e344af84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b90d1c339da868782b6b01fc7ae13916bdf441fe2ae7c38583dd0bded2283011
MD5 89e093402aa4253bb484840baf12833c
BLAKE2b-256 f32a62ba8b0b26230fca7ed98e18c0b62c1aa13c52fbb124fac6427231da4ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ebb57e9e112132657b46a963f42ae54c619a3426753fb56a90bdc21c17a822c
MD5 0b6cd3dbd03c4c6792212185222f1106
BLAKE2b-256 3f06c4864e5b29b080f5a917ccd4fd70f1cde18168db30f0324c6eb1e1116538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a12ea7282bcb84ca9d21885f3d38414340be8436fd7abbcf5fa321b0e74b0e0
MD5 6409c4f2626777c82a94fbde722e4bea
BLAKE2b-256 54f5cedea7982e24822dc9102fe2dd97b8eabbe1f53b5be3c6523f8cf1f54baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74d9d31dbaae30625f31e6fd36d280c2e1f42824b5d63b1508d317231e6e0fb5
MD5 4d6d809769f7b61fbc321c087b9095a4
BLAKE2b-256 62e06df3002cc9564bf1daceeef3e1bc6d05a972cd515e02bc001a40b06a4387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d430b06e71d4d286af843f20a2294b80481e1dcaeca664b9ba84546e37dca85
MD5 a17997288172798bfaa84d64490135ed
BLAKE2b-256 163ebfe16aa47be6fb2626f5c232fb232f1f13e98582eb17b301dba763eb79a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d9831e262400912d76c0d13f710de721903bba944caf514d5084bc98f6706ed
MD5 6a667f2046637eaa2df6c98db0cf9d32
BLAKE2b-256 e0b5448b03a490bca0c6b87e1e6f990a7feeb853f45a8a63bd8b3944d059c2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e63629cd0d8e5bd1563783bfaa3bda3544142929fd7b1554aea0b71e86cce29
MD5 ef8de3e5b4ecf6935a11d2a6a9b3f6d3
BLAKE2b-256 5a21ee8001f607f9ca421b62696b2f98354287b84634d2994b9e2d5dc1fcd6a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30cfd1f00425c84f77d8595da05b4366e4f6e5959ac6e2cbac97ccde9ff921dc
MD5 3c2e8962132d0f1e651657e07078b73e
BLAKE2b-256 5bdb3363ce46cf9b82e939acad31e09f2936d6ff7aba4f1811acc3c34c92356c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e56e8d9e08e62e39a96192a0743c92ac1255efec48a6febf19539eb0f007cfa
MD5 c9a77cf4699e9e4ef27742ab6a3a9e95
BLAKE2b-256 75e1ce5b7b5400a8c917ecc105ab6330f236415e22c5b5ec52e487dfc73ca3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a04c60ad4425621bd3afdfddaa6f4917ae4494bd241b36a14bd5430713ca3e31
MD5 15a4f935f29a57bbcdfbcabeb5223a89
BLAKE2b-256 bd5dad0607a56574dba80c8d1e4cf09b2c1877f7f8afd05c8a03bb98fab8b39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8f86fc2542e8e553782312372ae63417ea6262831711c5ac7e39fa0239fa7f14
MD5 ba0077faba5039c71ef8edcf74179ea8
BLAKE2b-256 5d9fc9a8bbd1973f8038250abbb19ec5c863ed165dafaa90bfc4e0b104075bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 415a1c5ed474b1e76715e6207fe210293e479e1a2d698a33d03f937c6a21c991
MD5 768a3f9ff07bb4073ef2e58742e70ee1
BLAKE2b-256 80b7ab35abf84d69601219f82828aa33233483c0c61c3d50fca425dcfad4b9ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e54ee87271fba5d58da7ecbb72393cde9dc77d1e10e438a8d23a58a3bebec2f1
MD5 be64f405d0005dd61b868d0ecfc5beda
BLAKE2b-256 7e81c6841106bd0f035ba730defce7971a1bb4917a365488311ab29a1e8cbbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1df6fc1df5d94b1fffe112c58ea18d114552c0583375391dbcc2930adb2e421e
MD5 6af610cafc8ff6304566728b67af46b9
BLAKE2b-256 d5c5ad5bb255a6220f3205059e1c029cc05e69eecece9a346dcbb7ec97084a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68b24acd5d4719b0e01d0d65ca63e8f759c0afebef647f77ce0aea3d110d5db3
MD5 5a529319ff0d69704c75ff8228af4b70
BLAKE2b-256 2bd4a52ce6ac217d34c9f9067ef8f522ac1ab181adae2241bc6e633e31b0c26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a75819c2a6fa2e301598a7825323c006524670ee2bbeaa6012db7c67fe8bd23
MD5 441a365cc3d3062badd15cb533da818c
BLAKE2b-256 d62403c2ee93b1d4677ed69988138bbd278e83359c5f9910a35ab97eb70bb6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 941da5912522c12f366720a42b55b6e855f96ed0a72bb767e117fbb45b7bec09
MD5 5a2d10bea5fc72803e011e2aca43275a
BLAKE2b-256 f53f332970c16c745b72dd28892a78a0861d001148eab039dd9290f1d4ffbd1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1501215c3f3e24208a165efffd940645448918cc73cd7f44ed88bd441cb6d93
MD5 4eca9165f578d4cf03eda1e5e179ce2d
BLAKE2b-256 2b70969f5d731d8a1efc5cea3668ba321d5b5efd313f627eb2c9b81070090509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb5a8b354b807187670c5a9b56652d38fc1826da6a261270a0fc69703d593a31
MD5 c4964c0d64609078ad14a729a9a6a446
BLAKE2b-256 80bd16854c5d71c98d87085923dfaee7c7a34247de3f17a98801a98dc2b87ed4

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f9cab91e6e95c4cdc49d57d55f967d6db3a90ffb8b7d8ee77459f6e1222b26a
MD5 a551ecac2c19cb3d120ffa0817f705ee
BLAKE2b-256 231233a27cc70001be5853812010479a673f73e2a682412a9811cd62e1b033a8

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f5d1c4323662ef97631384d1ce2a614e875fc7f94a6bab1f0b84d7c0553f2e6e
MD5 aceeb7bcbd4a4a07e2df309781e49755
BLAKE2b-256 6dbca2b94f7c66f441f640be161fa8560919911601fc1b8363286c6076975191

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40316014de93a64de91514a6910218b674bc9362aa2d668aba4913c17fa3e669
MD5 da172114055d288f8c9ea8b804226e03
BLAKE2b-256 ab659f075e71b9a9779e43e59284075e873535ff4d53d5ef1a24ed18541c4272

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5af5a15fd66a2b83f15be73e86599bd0d5ed455dba0e41a721ad538dc256bd1b
MD5 fe6d80b9fd119957dbb5505fdec92722
BLAKE2b-256 d8b082a1b2aa09e8a9d975f5028387f71a056431550c8230e54f28e966d2d3a9

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a3f137649b02e3927414b526780b6ed9d633871c014b382623f979a33d9517e
MD5 44bd1a7fcd23d323eae66424f9055671
BLAKE2b-256 7aaef54dfcea2fbd142fe6213104123550a493a2ba13fb7b4899545787a263a9

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c451e18844e68d2df68cfffe94d0f536b8a3a10c4ad19ce8ad1acf42b3a70a3f
MD5 7d02e3376784551ac14146a977e8a9b8
BLAKE2b-256 a370bb2366a8f076d3bd4ff700550739bc4edd4c5751d0cddb5fb60495da6eca

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff60e437419cb93693f13739f65404f03b5c1779f6fdc6292dee16e90fe864ac
MD5 69bd0a4b7003a9df7fd282a0ea16e3db
BLAKE2b-256 cfe7cb740a56ad65733fc14eb14b51dbfa7c3841691070616c4afdaf6eb3b556

See more details on using hashes here.

File details

Details for the file prelude_parser-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for prelude_parser-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f7bb7e6aef7bb06f0905b9d121748ec941c0b37501704c41aec7e0a5aed6694
MD5 cd03ab11bc29776b369f9699b01c8304
BLAKE2b-256 95b4f9c1ebf65876d175977ed6f545d6cea67a60b16d0b71dd29634c63fb94ab

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