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

Uploaded Source

Built Distributions

prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.6.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.6.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.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.6.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.6.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.6.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

prelude_parser-0.6.0-cp312-none-win_amd64.whl (396.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

prelude_parser-0.6.0-cp312-none-win32.whl (382.1 kB view details)

Uploaded CPython 3.12 Windows x86

prelude_parser-0.6.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.6.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.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.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.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

prelude_parser-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (514.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

prelude_parser-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

prelude_parser-0.6.0-cp311-none-win_amd64.whl (395.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

prelude_parser-0.6.0-cp311-none-win32.whl (381.0 kB view details)

Uploaded CPython 3.11 Windows x86

prelude_parser-0.6.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.6.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.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.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.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

prelude_parser-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (515.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

prelude_parser-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (521.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

prelude_parser-0.6.0-cp310-none-win_amd64.whl (395.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

prelude_parser-0.6.0-cp310-none-win32.whl (381.2 kB view details)

Uploaded CPython 3.10 Windows x86

prelude_parser-0.6.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.6.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.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.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.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

prelude_parser-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (515.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

prelude_parser-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (521.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

prelude_parser-0.6.0-cp39-none-win_amd64.whl (395.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

prelude_parser-0.6.0-cp39-none-win32.whl (381.8 kB view details)

Uploaded CPython 3.9 Windows x86

prelude_parser-0.6.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.6.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.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.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.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

prelude_parser-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (515.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

prelude_parser-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl (522.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

prelude_parser-0.6.0-cp38-none-win_amd64.whl (395.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

prelude_parser-0.6.0-cp38-none-win32.whl (382.7 kB view details)

Uploaded CPython 3.8 Windows x86

prelude_parser-0.6.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.6.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.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

prelude_parser-0.6.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.6.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.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for prelude_parser-0.6.0.tar.gz
Algorithm Hash digest
SHA256 d785b0b55a92da4f0776f75efa01c84b75df62b22f1122d1153a68506197e352
MD5 4d89e8e9fcc860d150f341a6a56f781c
BLAKE2b-256 c1420da789682bef2bda8fb599cb5c66e5969ec9e635fd34d66048f5d6a1acfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16cc4cb8aecee1ff64c9b051efea2c62e2e86c1aac2aff3aa097394384dd4d0d
MD5 aa62459158ee9be75114fb7c5d78ce57
BLAKE2b-256 da0c00653bf133cd1333ac604fef182d2c7767bb777dc94c9938ffd632c5163d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6498ac23a434f568fd5e018caad596cfb2637ac9d57d270f88adc77fa3ae41a3
MD5 72cd4b67b35175fda92de8eefa9f3e6c
BLAKE2b-256 ff119eaa32aa3140f1bde6eec588b5839c5e7f8085f1036c9497ea1b6e554ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ba3410f3fe43c327bdc484ce3ee1d4c63b9c6da61b5d4b74f157ec9d9f67e08
MD5 4ef89bb48b8828410a861443b69c3ac0
BLAKE2b-256 527d40ac5cfca927ca052f2b0ed449f56646a8d476069cb6ac48c0f3522bc1e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 711f5c78ac8a2be9bcf3288bed1b45dc44ed53b0ee4e2f54c519fc84569aaecb
MD5 e55ddfe8b8ca8e9c597263b2ee79edfe
BLAKE2b-256 5c179f8be4e4f88f8e794dd9c93f7195e83cfb4a0861dfb9e630b5f74188048e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 663e150b634fad27275874b50f6e68552c28b796ae4b9914df9faac9e438c658
MD5 6a05b9ffa98ba50c53716734a88b457e
BLAKE2b-256 ab4638740e6c5164eb31119a2e07988edb99a81221425091a88b5671aafbc890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 748becd704e84ca2e07e3bb5217e0d093a9d65c18207bf1d84a5f447eff54209
MD5 16281cc9d1d6e58582bf8e5e675529f8
BLAKE2b-256 8a93a65092de190363da44dbba3ecd11ce8613083263f9788f3cc3fee3443991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc2b3166970574b7f6f7c226ce8871e9d0cafed1e56f0de776a202e51ba7d5e1
MD5 09a586e789c62370976bafdd88371de6
BLAKE2b-256 476f8ef3af85e11fed65a076b74a454d14c6ecc73499242c431b06da9cba11c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65d1ac00be243593c4b9a93812af8a540bf094d537225f0fcfa44144a86531be
MD5 11e2904635b5ceb88cebcaa8c3cff545
BLAKE2b-256 1f3bea8a541c4510b8799f7c64a0d641a887bdc06fa39877a90277a37118ab53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d591b454ee5a2d96c5b93a42f7e31b2747e0a935701e46451d55b0ae14af33a
MD5 f0d5324c21ce0003c54f3cd58b82c2a8
BLAKE2b-256 7cdeba7f928112c2e8cb81ec9cb0b9f989bdd524a3629f91c459d11b19da9e66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f5fcc2e50c591be72167970f9fca079702f60af1d1d5c84dc530bc2c6eea9d9
MD5 3adcfaa98d440680e136dd673435640c
BLAKE2b-256 b23f7a1d2f9fd732e1f448c37b06828a12ae929b3d4a1fdb08ae7bda6ef5a172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abd070aa0ebc0b79d2d4613b338362f43c2301996d155fee6366edfff32b77aa
MD5 6f3f2739017ec7ab03314102e37070d8
BLAKE2b-256 55cd442f7d6ce1ec60daae8f0abca38e175ec5a04e8ac76efd64f1f7ffbe7b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90a1480c57cbcc1570d6e392177e33729051b80084a3dd5be0a858b48015134e
MD5 4e6c97bef313013bbb27651dc5049c35
BLAKE2b-256 310355090b7a7077e7562b93f1d66506859790b9c1e11c754a361ca074532c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 854eb669c977635b9c63884d822f76f5f5b0ad405ccabbabd1b3a9f5f74d8ebe
MD5 b7bfb167bd9f181337e21eea7fbac615
BLAKE2b-256 439167b302bcf8feeb2039e7ee67cb5153d6eea283554ab51bcfa93493501ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ada1cc6e40d7a27c561d9eae401f706ae6dbc32c238d17b6dbd9c6265907ba75
MD5 268dd782b8122c07dd91242d0c8d297e
BLAKE2b-256 426011a7f7d8bc7418fd3c2af72133cccc454794077374ddc5162e62293f5c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc364976ee4aacd09c487b69707a6e68b4483f3a83db40920f673aa8fba456f5
MD5 2cbe9c7a303ab126b764afbb5c726fd8
BLAKE2b-256 db9d97bd6113a1dc7889a49465b75de681e059a41a280c3240b7aaf57958adfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cd27a27e2741eefcf50d0c3c36ff03a6d4d91e2803dc2c4573cf3f785d0140c
MD5 d1cb459d021486d0616f50c227534df8
BLAKE2b-256 cd55e1f523b2881c4c787ee23522807e5a0f4dee8ba15ba28fd18b05d34ca23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14a7530d8270f09af2850654c20ea8ff84d2dcc6b46f115eeb1a890893b3c932
MD5 0c16ed167078e2c8c33b523ebbc1e9c4
BLAKE2b-256 1b62461a9554028ce71652c157450e9092ee5dc40fad5ac21110da2d586ac952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8df527d17139642d8a797b324b8d3838beb3673ab380c20d0f49ba918dd91c1f
MD5 0202891756c0674e185c28bf9541f69b
BLAKE2b-256 5fc90d0491037e14d6428b786a0b970bc5db4609065f12b69864021d651c04cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 73d5a3322b15729fcea9005e9922080cd01c9ef16ba5bd3de1933ebd003afa50
MD5 2b3b0419aad69dd592d9c9ac6bb42023
BLAKE2b-256 ebf3acd0b4f22123ed140225d08b6b5366db4b2d5a725077ef095e5cb1297768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d51cefb3ab02acfb357aca3ae69a01538849597e6b355123b2f20df607f09737
MD5 4eb09eb4327291d00bb2a9b13b53c11e
BLAKE2b-256 e70ee68708c12fbf2f7fd776de9fd46f75f9c4c5aec494d7da43d37c2e2135d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 943f26f24ff8445198c445a20f63c6402206b5e6c2949e9754666f742c1e94c4
MD5 80bd6f73ec2e8e509ecbb1885c1905fa
BLAKE2b-256 17053df71887b2bc1956b8295b50bd8b2218186f46184ad19644e4ab38a4c530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 496ee38052d4bf32ce014740bb6adfcceabb9f4ab4bb615ca5bf6c910360e0fe
MD5 ef339362175b493209160f0fa0a6d901
BLAKE2b-256 cb2a0b7e321a06995fb0f9db29460d483ab4b88ec234c0abeb2e6bbedccaacb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7fb77793a364e8e869c557113433dc3626b274194efe166a995cd9aa17832f3
MD5 a2dc26245bbe8d1ce8f2dc24faf177db
BLAKE2b-256 af4cfbc579855eb6c0314f07203c4352c7d0427b014f33d1df1ffc2faa7dc720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a887bcc82a65f19e138433c847679be27404d9c78f0c8879e8dd85b3ad3ec1f
MD5 fd1bab3379bf1ba7c7fed2015fe65297
BLAKE2b-256 b00cfb91ef6a51cd49357da9ac1d9ba976048798f0e904fda2db249805790282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ee96fb99612f6399e7a0ed5e0cc749ff58070cd424f2c0d19305f18e836abca
MD5 c5cde2530b57e799b3202bd65f3098f7
BLAKE2b-256 adf4cc739cb0318c0b9304ac6363728570a53892171169e2fd667fa58029183b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f118fbe1af1a46acc30b90af51cc8fff99d7b40d8d1872b8de6d31aa584ffa33
MD5 bcd6187ab0ca1d2caff3e111cddfe696
BLAKE2b-256 7249adee996ae4973fa6495953f77f3bbeb59fc39f319a11b9fa432cf19d3a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b6f06d9636882aa446cc2cb75399b1c3331894a7056a0bfae56f771f3927d9
MD5 f7d2db6bf2abeb52876fd81e72ef3d05
BLAKE2b-256 a8ad5e6f3fe7427e197b9a9189595d35153fa420b322740358d54348c8c1c858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9c88d22a34b86d4a1b3f9e9a001db8bb3be8b821f5585060f78d5cb751c33a5
MD5 843990611f0b6643a96c1aecff6d8b76
BLAKE2b-256 8d00da22e4f7b760f077e026596aca45f8c3b653a9a55185eeaf4ca0d6c1b50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a3e686ecc1580b2642bbcec0e3b1d70d5c486fd6cad03d8494e4b2051977ebfe
MD5 cd7963986096cf9def9637e240922fe2
BLAKE2b-256 5867a8f000a567d5759b64d5b9e8f21a984f041f451ad59ab82f9f4d1039977b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ddeda05da091f39c592de5a397e89fa70500fb6bbe92d15420f1f39ba44d0f9f
MD5 cd3b1d0c92f8d31680f3ccc6458bbce7
BLAKE2b-256 18c841f18ca69b1125da52434515c680e9a08bbbe6fe39fe244ed317d1d3c383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a4da4ec2a1d0acc206288251803ea0beebd8405b9889963bce02420c901c3ff
MD5 5dd2cb581f26539bfb7ffe43a2abf9a9
BLAKE2b-256 a9a65ac613ef028081f7883832ddc72844f130b4807ef3635a292e84f7b744e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e2702da06d41fd901815cfa686faf5d63ffad41e67a60ee7f80a233e8b6db43
MD5 66ed491eab1683be77cf2a3cbbd89790
BLAKE2b-256 cdd2715b8510784f9684ab6a23b8efe7b9fc4fd21aef56edcd87b0d2937e0e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec26c9c6f9ca78685f349c74474156b5bc7e001b2b552ddbba98dc024419e6cc
MD5 e9d819fac516cd954bb96d18366b70f0
BLAKE2b-256 9f21a9d232f91183b30c0d43aa6d1b9e032ab68c71a4f6dd0587ebf93e703f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5e3fb332f31527fdc115a6020124958304791eed22f44ab9b71858c54c7333a
MD5 729b839a9c7f3f1702e1d06be908d9fd
BLAKE2b-256 f8da6cc95e792e6d1dd5943b58928f368af56685bdf5572b8bace0183ef4f1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3d4b5c0a0f4c9e16e68c69a7b12f3c07070a6df685f349c6dfbdfcefd7174ff
MD5 cb36ab99e7b8dde6215f1fe486d2aa7c
BLAKE2b-256 aa24c9768bfcc496195609a9cf0cff093e604a751ecd382e99faabac3a051a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55dce64da41e545e9030aab799ff742c53008bad24ba3d50089dfdbb29479eec
MD5 ba6eaf157a427fdf95c17c1a15ccc05d
BLAKE2b-256 0de229b3bea1d0124b26c4df2f07b5fe73b3e2f2a1356b2543f6521cb7ca8904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcbaa877729d9d6edcab1459c4f47dd2ad56b7fd72c6d613d84f91233f09eefc
MD5 7a43703896d103bc2d6cd0fc899d0e3b
BLAKE2b-256 f10682d365f37a90724adbbb192c5b256f2b3e5e41b12dc393daf7f5820bd0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8b2dcc6876596620b6f0ec6e646008e8a26ade098e1de599b41d33a4986bd76
MD5 7550009517ffd5a754c8bf75a6b05bcc
BLAKE2b-256 5a7bae3fa2a5ff057f5de207a7eea48059d712a175ab44ad56b8c795b0f4bcb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 752da57617519538342bde6f5ff2d8fec90d2e4a6d8e1fdf9b34bd542cd7a385
MD5 8c64299ea3026045cc221679b810ac2b
BLAKE2b-256 d4606a3f9fa8283e86512cc9f223173469a4886fc2fd0459837836eadecb8148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 bfc2c1ff5fefc542323eb8d6fa51a6560cedf7f24740f3e502836fdaf990ef4d
MD5 f6677a4445c652987b11d877c6e4ccd8
BLAKE2b-256 38b2379c92d63df704152779aeed05f8635fd432b128420ee6be03b48d2b57ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 beee461720028acef665740cea5e152aa449ba548168cf1fa03bcd58b7057017
MD5 79f5a44139dfb764e287614eacb0f9f7
BLAKE2b-256 d07c3b84e0e344b27ab67c3dd175fa8e92d4d769405dadb961436b54a7196df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e27d628fa979d04c0ba90eefc8c15780f427cfe8fa0a4968b2e6aa4eccd3a80
MD5 d9bd6ea056099c81e926abde01cd1b16
BLAKE2b-256 2cbbc281d6e93e587e8dccb20eb407598a756ccb110380b93646b6ee8de4dce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b885cc9f7f4a414899933cb6327104f1b59fe91217fc7d1bf3b316a8dce5610b
MD5 97d7ca9ea70af522ed730f5e9b58a6b4
BLAKE2b-256 937c1d4998d031ec7b6830e4808f207f2a99c33cd4ff573d3b0f22001d2383b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e15e621a3f06e1864e35a136c573ca282be1083322833cd8bea8abbd04e5a0d
MD5 f78fbbf38fe071f6055b117b1a38681c
BLAKE2b-256 4514a69bae77d53f2c521bc3adfa3246f7c55c96dee6121eca5ba52200da6bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4609bf023fec17901dcfc99fc8eb67f5b330850a15d4f950ad22d3320eb90635
MD5 23110c6d228f1828b1754724c6e84e57
BLAKE2b-256 d3f5adab3f225a0b8cef749df6d23e3b97c85e83490b9baa4b83991fe6182f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c9f249afda0a44616f2ba8eba5c7ee1d831ef5c4d9ecf8cec8b2ba3cbcdb84c
MD5 4639d018899535732e3accfe13d5d3e8
BLAKE2b-256 b130ac24afda43761f90ab7e83aae97010f939aef7ff4b62e457ab9b0d7f32d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00b88c29f95ca7a21d98eae0b2028a1f7fac0a1317024fc02ff98032aa4bafb9
MD5 d0ad740a2b8135fe341da77a975b4619
BLAKE2b-256 145aaa5772b0f2ee927748690cd18d31c2bb9aea825d3c1998e1ce17af06ad45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 973e5e8d900f5a05c0ab35817730f4e41b58d1e6096ef57a9904e29a5ea53f0c
MD5 809bf74a351422aa59200afacc190c74
BLAKE2b-256 613cd3ae835b51115941d8e45587aadc1f5c947a2a7595832f6fc4bc10dc49ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 215098f03a96601057abd6d42e0920a37cd219f3aa8ef9f7a5232413fe65e230
MD5 b69daf7603b9161b88906348b0a8aa86
BLAKE2b-256 6814e27bed1a2e69a35b06dbbe6a531176b843cd4f5e5d181a5738feed299541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f3fe58420b7143931a15c6dd8bb138c3c4e18101346540a8924f2f1732cf18b3
MD5 210b154db8030d8b18d7889a7ee1249a
BLAKE2b-256 956873fb4d41552783d6c562f6f98eeef0750a1adc398b54b8013172eafe8a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee5cb02b4e8e73a643989fde30ec5f9ddcefa8e422d08e2fa311be89a52248d8
MD5 047c5224b983a1ef5c71cf072fcf6ac1
BLAKE2b-256 254ab3afa43b9adaeb409a490b175634d1eb41cea6de87b7640e17564dd2378b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0204b3206b7d033b9921458b2a15d4cb74bb9c63d6a1d663cd0fc5f708d9798
MD5 86fb5865f6af7d5de987764a3ca04a23
BLAKE2b-256 9307ee7f99ca3ab6308c2a4db30f5e926a81fdb2da685b64f52689dfe51669e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de455ef7574368b4bdafb6271b140c4462d9bdda6ed848f0bc71285deabf8553
MD5 3faa58cda23e7f41d3655aac8876e05b
BLAKE2b-256 6954392ae1476288e51a2a4cc1d52eca60e951f920e9bd504a44df387b4b329f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d714d1f5c7962d84990120482040c33b2371d19610f6800d0844e0e1e2110823
MD5 cb439df9cf3cc1b7051b3a2af4223879
BLAKE2b-256 ba2f6b09e1c289e11975d04a8b8b2413fb3b1e48aef395cfc1c3f52a85009b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f0527eaacdee29a0f02a28649159fda9b4f8b29218913b0c1d40879e7786b56
MD5 720c93dbcffb1950d0a9c2f2e6928fd1
BLAKE2b-256 5e21730296f3a5c29c5d14acebcdde9d03c66ccba3b00d1899eb6743fb9bb327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b78a4d7e4cfd480d8735092bcd01178d61607d54b023377ae77d55ea4fe4d442
MD5 e1b521f8750074f16e873b9d2a0d4e54
BLAKE2b-256 b88208bc28d5405efcd6dd70cc2efb074bf77747426eab87f362fc03f641ac58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af62ef69af443d651ff52ce60b5607756a139eb7f57c47d34c9bd1e21fb497e7
MD5 480861b0ea48b9fb244bc4049c6a080b
BLAKE2b-256 e00463f1d1e9d292c057ed0684ae7c00812d3159875f46fb7e01db31acb5803c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a737f82095d0aae2e41716b473b6c07efbd56aceca5714a84b47772f0ccd8404
MD5 80e873a92d2e13046f1d8fff4bcb31e2
BLAKE2b-256 77ab3239ea2890796f5966b77cc6f4bde031f434e626b93c822cc47124a27350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e70707b31f38a745f0da9c54ced48ddda78230d6ce3203d9b41b66199d1181bd
MD5 ef4e94ab95883217cebedbc45d92f838
BLAKE2b-256 16119d3475abf6c4d3af29775c29f212c9410fa5ea1251b6f1c22115004e7024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4f1008d6d599d6d52419dc524c799a51e5eecd071b6512aabeb8da9e86afb93f
MD5 b40d1019c92963a330fbfb18e8db16d6
BLAKE2b-256 904e7549c5b2bcc86b25d4fe415a46f41d5584e378317e0ddb24f63a4cc15cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb2afb160eb84d1757b66bc4eebe484e9e565a015498c348d7453161cf3ff7cd
MD5 9a1824fbf214feb33b6eeabe287c0904
BLAKE2b-256 d2d2b71bd4ef20197f58888b345f44fea06602e95d6652dd3fb2922f0f7fcff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da2632e82aef60b862aadb47b1a22e2132f3ec997fd71cbe0976f89ee6babf9c
MD5 c978567c4163a7cc9b2eb5c1257b58b5
BLAKE2b-256 683b58bb5933d76d9de2e0eaae9f016a020e11357955ebf32e54151be07d9055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ed11c6cec7d9f4afdce37a0351376c82360821241760172b7134806169de5b0
MD5 710a3382c4b03067d4fc5912403d79ec
BLAKE2b-256 0d53f0e9f680d31b33e04dbbd3ed5a07ac05e098737fb35ea8c71bd8b41489d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aea19123a07e180d25995044cd0d90deff3ff16b81dd36fc928b543c41418666
MD5 8ec8077dfba8316f15d947b7e4a2c15d
BLAKE2b-256 4845d8f31cd9347e84c54675aa8fff09a2ddf015d79820f3a2c7275171931f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07b14061141cf55636114e61a16c04262d7cb58fb30e4bc3fbae7e4e091b5fe7
MD5 763b66020ce6b0a12cf1bf637c692f82
BLAKE2b-256 a08dd2f7d3476df6b4f38429d9237fd40be89f12f025f54c87910484c9a54866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for prelude_parser-0.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc5d17bca2accaaea6087fa24de0632e896a1cb6534ed3bfc111ba81173172d2
MD5 e46bc9c4877f1fe45200b61852139da0
BLAKE2b-256 08ab357ae485a4c266fa2e17cb030aeafebe9dd82c0322a7e042f0e0d55ca30b

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