Skip to main content

Parses sweeps from a Signal Hound Spike file.

Project description

GitHub Actions Workflow Status GitHub License Crates.io Version

SHR Parser Python Bindings

This project provides Python bindings for the Rust-based shr_parser library, which is designed to parse and handle SHR files. The SHR file format includes a file header and multiple sweeps, each with its own header and data. This library uses memory mapping for efficient file reading and Rayon for parallel processing of sweeps.

Features

  • Parse SHR Files: Read and interpret SHR files, including headers and sweeps.
  • Validate Files: Ensure the integrity of SHR files by validating signatures and versions.
  • Sweep Metrics Calculation: Compute key metrics such as peak, mean, and low values from sweep data.
  • CSV Export: Export parsed SHR data to CSV format for easy analysis and reporting.

Installation

To install the Python bindings, you need to build the Rust library and install it as a Python module using maturin. Make sure you have Rust and Python installed on your system.

  1. Install maturin:

    pip install maturin
    
  2. Build and install the module:

    maturin develop
    

Usage

Here's an example of how to use the SHR file parser from Python:

import shr_parser

# Define the file path and parsing type
file_path = "path/to/your/shrfile.shr"
parsing_type = 0  # SHRParsingType::Peak

# Create a SHRParser instance and use its methods
parser = shr_parser.SHRParser(file_path, parsing_type)
print(parser.get_file_path())
print(parser.get_file_header())
for sweep in parser.get_sweeps():
    print(sweep)
parser.to_csv("output.csv")

Module Structure

SHRParser Class

A class representing a parser for SHR files.

Methods

  • __init__(self, file_path: str, parsing_type: int) -> SHRParser
  • to_str(self) -> str
  • to_csv(self, path: str) -> None
  • get_file_path(self) -> str
  • get_file_header(self) -> str
  • get_sweeps(self) -> List[Tuple[int, int, float, float]]

Example

Here is an example usage of the SHRParser class:

from shr_parser import SHRParser, SHRParsingType

# Define the file path and parsing type
file_path = "path/to/your/shrfile.shr"
parsing_type = SHRParsingType.PEAK

# Create a parser instance
parser = SHRParser(file_path, parsing_type)

# Get file path
print(parser.get_file_path())

# Get file header
print(parser.get_file_header())

# Get sweeps
for sweep in parser.get_sweeps():
    print(sweep)

# Export to CSV
parser.to_csv("output.csv")

Documentation

For detailed documentation on the shr_parser library, refer to the Rust documentation. To generate the documentation locally, run:

cargo doc --open

Contributing

Contributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request.

License

This project is licensed under the GPLv3 License. See the LICENSE file for details.

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

shr_parser-0.1.9.tar.gz (19.6 kB view details)

Uploaded Source

Built Distributions

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

shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (548.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl (578.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (645.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (556.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (429.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (403.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (547.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl (580.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (646.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl (577.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl (643.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl (553.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp313-cp313-win_amd64.whl (219.3 kB view details)

Uploaded CPython 3.13Windows x86-64

shr_parser-0.1.9-cp313-cp313-win32.whl (208.3 kB view details)

Uploaded CPython 3.13Windows x86

shr_parser-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl (546.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp313-cp313-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl (644.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl (553.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (401.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (327.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

shr_parser-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl (335.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

shr_parser-0.1.9-cp312-cp312-win_amd64.whl (219.3 kB view details)

Uploaded CPython 3.12Windows x86-64

shr_parser-0.1.9-cp312-cp312-win32.whl (208.2 kB view details)

Uploaded CPython 3.12Windows x86

shr_parser-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (577.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (644.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl (554.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (401.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (328.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

shr_parser-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (335.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

shr_parser-0.1.9-cp311-cp311-win_amd64.whl (218.2 kB view details)

Uploaded CPython 3.11Windows x86-64

shr_parser-0.1.9-cp311-cp311-win32.whl (208.3 kB view details)

Uploaded CPython 3.11Windows x86

shr_parser-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (547.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp311-cp311-musllinux_1_2_i686.whl (577.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl (644.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (554.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (402.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (332.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

shr_parser-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (340.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

shr_parser-0.1.9-cp310-cp310-win_amd64.whl (218.3 kB view details)

Uploaded CPython 3.10Windows x86-64

shr_parser-0.1.9-cp310-cp310-win32.whl (208.6 kB view details)

Uploaded CPython 3.10Windows x86

shr_parser-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (547.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp310-cp310-musllinux_1_2_i686.whl (577.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl (644.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (555.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (428.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (402.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp39-cp39-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.9Windows x86-64

shr_parser-0.1.9-cp39-cp39-win32.whl (209.1 kB view details)

Uploaded CPython 3.9Windows x86

shr_parser-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (548.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp39-cp39-musllinux_1_2_i686.whl (579.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl (645.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (403.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

shr_parser-0.1.9-cp38-cp38-win_amd64.whl (218.6 kB view details)

Uploaded CPython 3.8Windows x86-64

shr_parser-0.1.9-cp38-cp38-win32.whl (208.9 kB view details)

Uploaded CPython 3.8Windows x86

shr_parser-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

shr_parser-0.1.9-cp38-cp38-musllinux_1_2_i686.whl (578.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

shr_parser-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl (645.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl (555.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (403.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file shr_parser-0.1.9.tar.gz.

File metadata

  • Download URL: shr_parser-0.1.9.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9.tar.gz
Algorithm Hash digest
SHA256 ec235c5d1be5b0998a9fef479943e56d11e21f655c34d211af28cb6bc76a10d8
MD5 aa1fb2c9159e68580139de19e65e1807
BLAKE2b-256 abc67b93be216865c48af086befd01e900042b89f94b2d24e5249b5aeb155692

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b11d9c67a7878fbf22de703cbee795187d79f95dc04ac7dc7e251dff68c51dc
MD5 f06154a192a2d570d87a70b55b17e0e4
BLAKE2b-256 378d364446a7cb40dcd8d958151c163c447c3a3269d5623ff8a97dced2e1d2aa

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c112d415d3221e061b2e3b5b827fd617af58f86a2ad485dd95b8acab4858a1c7
MD5 b86e21c66fd008bf56bd7ca41f4a798b
BLAKE2b-256 05f7fdbe3bcc76cb6aadee08c8d7f6a5f61b86cc74997cfe2eea9dcde2370b9b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 961fcfe7c443ae86965bef9d9d8a09f30b85a9150a06be0e81bd8009dec81ed8
MD5 cb5a22647c90241ac6835941e3910d09
BLAKE2b-256 01c0dabe33ccc73b2eef85ee802b9399795ca14bcb030bfabe0d9ea9c8276f48

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08a4f10abee2851afa1733f7af0f84872fb591ee6e4c38b8183faf6cc832f639
MD5 a342f877330c18b9795ad708357c37c4
BLAKE2b-256 ccc834c2de664a96353e78133e24ba794d8736635894c09700e726fda4c55787

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e65ea5fa743b9614397648fdedd8fd2397666077ce58e03e3330326374b1dff5
MD5 8b71e4b2ba2ecfed1600f3f477d28ab3
BLAKE2b-256 d0a0f8c17f448ea1ff537b3a937b2e22328bdbfa6efc1973d5c38df4d30b9df9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c49b68bdbec2765bd05305e777ae883f655c1b3a8299d7e4f77f1cf46fe3357
MD5 4612a7e80765640a3b79b480130dd81d
BLAKE2b-256 638b709fc1ac800ea46ebfb49f6cbea38095c2bc0cdb86c82af0132aa0f919f1

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4d8d969c7baeb37969618a50e595508d64eda84d734c1e6b8188fa84f4c07d5
MD5 c131413ce911bbb564517e0dc82f8152
BLAKE2b-256 1c30498db2979dce697f34b16450d00742e0bb6ec6568a2e32bd8cde33909835

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 546d19a9bccab382b888f80c70f3601a9ecd721f482bc9507386d1499defa5bb
MD5 ec397d7ab807e53804bc86256df45cc2
BLAKE2b-256 e35ec10cde584465c2e3f606323f4430be254bc0d2b93d7c443daf6e246d422a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 510b9177e4881a10754882731356bb2403094998aec5daabcba04fe02d96b625
MD5 65c5d21b19f10970b53a5eb95388501d
BLAKE2b-256 5134f3b1fa5584d60c2c9288a7ef54baac9738b523518de3f15fe966dd9e2dd9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a7f84101f6d02ce40ccbe54f159082d5bf86917e7e122efb43c30d4d00e4420
MD5 111429d7a27a11b6777c143a87f239df
BLAKE2b-256 deae4ab038bed27dfe0a8e258356eebe77251b1a1f54043abb165ce4de98f371

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2de4ea171116f89a53653d821a383ee9b4060f409885a30f385f4856d98f59e5
MD5 f4e0e873f1fc8e7fe15b73dbdcaa482f
BLAKE2b-256 b684cc80a2c3836283487048b2b29393610cd0351be1573d6e7f48d6e4318e01

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a75315d117f3428cec455210baa96905360aa9d8a9395e20b1f155b97b44ef7f
MD5 c0f00805b15aa5b23bcc71b4cb23bd13
BLAKE2b-256 bd7078f3ff068daf27cc1d232a247c73e23b8a7ca0739e0546e4fa75baea0ce2

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b778f110b8a073ef17abee877d44deee56881e63f5bf6a9c9c1c3b62e48595b
MD5 fa15be3c4a198a8b56188496545c6888
BLAKE2b-256 948ebb16e32e402962d80132e521a313963fe9a016180c6fbc0da4d1668f6b70

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e235c317317d5fc156353c9bf7d23d0b8192c785ab7c90f2b47763ef48e4dc3
MD5 f0de2336325f65dc0f761be8ceacd909
BLAKE2b-256 d50a3d02798a2fd8008b2748d5321f3effbb34cf03bc9808766ea435ce77fb75

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cea5ebc2b03863fc65811b7daa7e7eb6a6727b25f525912627c443e0e61b51e2
MD5 0e1a03284def9689dc49656e7d06fe01
BLAKE2b-256 89cab086e1c10c5912458e522f2371f7c11b62e7c57e9b03fd2b2534adc6cee0

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 943fbb8d0d8370b205e5743599f049411486a6ea3bfdffac98acdc674201582e
MD5 24ba0b12691675c65e918f0e8702dae3
BLAKE2b-256 3f57754d62880f5970c79a4d013ebfbf834448ecae7e79711239b321b2c5f87d

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80501f7a7fb41dad8dbd7ebbe858d66e0952dd684b2790e5955aee4947a0b5af
MD5 cbe585345d272836630f81583325fdc5
BLAKE2b-256 b3055857822649c774304594c02d250120f2768d722f14e899fae4a0a917804f

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76ac3c1cc467ac28193108eda118faedbff55d990156e77a0cdb7386dcdcc127
MD5 ccba0e0cd5d55bf40f0dcc54ed4db0c3
BLAKE2b-256 def83db8f4cb3671ce1d2ab946f4eb30582d1785282687ab80fff65722f5e9e5

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f34d3d8c7f653d5c390436c610e2f611589a13467d16d39fff61399612fad420
MD5 d5a3dffa6fcbdaf8612d1d18af73a879
BLAKE2b-256 00541fad17835bab44799810b80a3c505025cf8b31d813b03c0b526edc50f658

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2fa98919795945d8b37edc215f162562efafd02c61804dbec1a2e5585328fac
MD5 21ac2a0e0e1d5b38cd3d092bbcd2abb8
BLAKE2b-256 1b4ce2fc434dc17bf836ae324ddc8b04233fda500384666ccf0c00bc83011128

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c612e8ec44d29726b3a432e149df321820402baedc0c3e6f0a08c1fdefa62602
MD5 7f26eca2ee4ba88ee75015ea962f2e30
BLAKE2b-256 cebda96490e54c6fbc4d2321604fbd4fda40be100c28a072ccdd08007db6ab72

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0b2a7d9d774c6f3fb0ec1c5940901074fc8ec46e85a1bfa6c0ff698adf290a7
MD5 64c9b067ca5860114e011aca56bd69f1
BLAKE2b-256 c9373fa2d548fcbd9d9908508bae85598cb25c2aba0f312130b8e338d09a309e

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 452fbe6b2e1df08b86a9d1177e462f91d824815789aa543370a90c03902ee0b1
MD5 6a88bbfbdd4d0eeb89ae086a9abb040c
BLAKE2b-256 1ed6e21659cac4473bba72e0265317019ce5244367e1b2f6e313001adf793ae7

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e08fb6f5ab7d4fdea81a5530df7e26965c20d1e2f776f8df2d65f896caf69875
MD5 b5dc99268b0b386d471e1462efa703d7
BLAKE2b-256 0fa560c1d0c0d96cd31994c4f2ca60b37edc8d213550b727abbd8f2f060805f1

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5740ffc0ce77fa388dae1fecf13e3c790769c82055e3d4fc0418b40d7700af30
MD5 eb88e1b558c7fa502eb8995f422049b3
BLAKE2b-256 dba0019797fd15cd699213bd00df452f19a80b3cf532c206f63ba89422c40827

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ee861fcac6f38e03216ad1240fb39375820674e246647107a0e229e836ea08
MD5 5dfff58dd382654851f19752e301c80a
BLAKE2b-256 01e0ffcc9cb2d1d9b4209f413b8480ad190591ea7c8989943a3602572545c521

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e4003864f17c33c8f9bcafe1f856f791e412530853d7c7979ad27e36b2f4c919
MD5 8c0ea2896bd564e8876799774754ea42
BLAKE2b-256 e19133440008f42f6ca9d168fc7c9cee708df122ca2ba2ec85060b6994497367

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5368062b10e394aa40a7f2066c79394bd1856bcd35df7e4205d3dcf97113e883
MD5 9d84c071fbc125ff8b9ad8a86b142a7b
BLAKE2b-256 54cfbee932afcbe354a97d7d2bb7c5110127ab459ed6cd1f4e6bb65af67df9ef

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1de14f512002ed51603356d95d280102e76a13476529777c6c8dc8564358ff61
MD5 d0ecdf214131bba85f106a1453f23e5e
BLAKE2b-256 5374c1e2153b7e6688591737db9af9641c93f44c2658678e9114bef232621f9b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a29622120db2d41e3b822b20e8921a32b23b35abdc218ca6d153a0ca4ecf2bf
MD5 bfe1631aa385dc8ac36eb9bc3151d687
BLAKE2b-256 276035a5f974b38e15ed5915b3c7022dd6ec2b6c747439ec7daf01d5b36d0daf

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56bb4dcf9c5478bb70f20ee9d83f11e3e32e980de5393dbd8634825c1557b052
MD5 982d8b5dca341f521b0bf0f5e5bac8d3
BLAKE2b-256 2d318058d8c33c22a00b37b60f23dec4f5b060400d1db05d8af06a64c45b3bc3

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbdb879418e7dbcad510d052e6b6118600bfe67bbb052197bfe045d55d8c5d91
MD5 323242317a79f0251c4c3a3822a47c71
BLAKE2b-256 36dd15bb5359ede150f567aa451a2c3b02ec78228276a6ad348db149f3ae5d46

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8110ecb5e6154c3b6cd500aeac37b5e4511236f42dde9195b548b9d1a8a884c4
MD5 5df1c52fe34bfb80d24e876987097ec1
BLAKE2b-256 bd5cb60b1bd6f52f5c42cb8abf5489ae322587d8cbceede8d6d9c032e4e1f28c

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91c91b117fc0c0879ca970cdf5d1dd6e21721409e74e2a295809f81b000efc18
MD5 734ff8398a5518f380c153229b6b4bb8
BLAKE2b-256 dd240daacb71f5fa457648f5dbf541de07fe8791e0dac82df1d0de12bc6ffd1f

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 648cd0987db858b044a672861836ed64dc7027421385868b32d01789b4f5433a
MD5 8fe143902f80ef70c9c83c5a646b72a9
BLAKE2b-256 3c715f388e80d5f1b1e0ae0a4f2af9574b112f7e81c142305bea25dd6a9551af

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 527611e773879e5acff3de0c5d906f092198338411dc6be01481d1d968014fa6
MD5 afa480a7c0eb3a521f204970e46e7888
BLAKE2b-256 3758af525d05cda044a4fba3226d5b9420a4bd4e41acf23ff3c42253b2076997

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82d2d4d5e12cc28074381a85efada76af96aa10952256bd12961d3172c41db7e
MD5 24404a192e766819fd221226edc12d41
BLAKE2b-256 71e9d99f3d9f52e9fdabc02ed6f6c176d59fced9dea367343cb1d784248f59e1

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a70ebe20f1a6b50b55288056f2a5729c8db1cc6957849afc94b274f66d481fc
MD5 a7590568bfc2a5bd8108abaeb42e0fee
BLAKE2b-256 c006338e4e190959a52d22985d2303d6be884186e4826abc248ba04691484ec3

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f43a405d1f23a5bc718f28cdf8848dd135f14bf3a5fbb631815930d6d15c7adf
MD5 f76a20d33ed8e66cb93a74bf56d69cae
BLAKE2b-256 a47b2b136a3e99372a361c75c3028e0a0895a35785e4eac13120c0a94ad30f21

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c0e130e3125bf78b397237e7fc0ec51b8e92584df4922767ccfd386d24f0926
MD5 a98ce4a53ea25181175eec42f14f85e3
BLAKE2b-256 18cae28fa11bde943be7dca9dae1f8804972bf259ceb68c6505abac6637f51b8

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8637e332bab01a0cbe7c95ea13455d9f3bbfc6f8a421da818dd508c14ce01fd
MD5 941195be7914ae166ec05f2ce06476d6
BLAKE2b-256 53d119065b7b369436520e861e6deb05141fa840214de10f9542b8ad36ed4d42

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 208.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9bc99ce6eaf1c43181ea89ccc1e3d8594b11fc6f46e430575f4b8c492194cea5
MD5 c69d559d0922af126840dc83f5c3c2a6
BLAKE2b-256 8b340b02b7f7f2cbc10fe27ea3be357d31eb7f720ddfe6c4ad88c5ca4304a2e3

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a8b260e6f23060822f0e798819dc3a638c9ed0aa63726be650777af40a9ba30
MD5 2a80568e316f3278dfeb9a5b2bc4f961
BLAKE2b-256 140c3d8df877c5f93e1469f860d75b3b80bba698d6071cae43e02f7383b4af63

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a33cc677d847074f667595b271fff6c14bbf688a553d57d1ba23418e95a584a3
MD5 239d34708442327327092a4befb66e91
BLAKE2b-256 f638ffb5302e74c8b4ef23b38a88f57c5a3dcfeb243412585542b3f4acbd2101

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f08195103f196095bf320e1db964bc6f9c7740dbd0afa5a00d59f4ffe7eb7acf
MD5 f3b488fb87d4df5b342c4b42c08720a3
BLAKE2b-256 3634c9592cebdd1de6895f0a82ef5f0296c3f80737d7f4444f1ae2dc8eb67bbc

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 243dc56370d47ec2adec222b5e01ca7d6b6d224c9bbfc221f6e64ebd49f19637
MD5 6d715ca3f143a7f5621503b031b551d1
BLAKE2b-256 138c9cbab9289d22353300027f78ea311046ece739fbddf46964b92f46d660e9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05b8573442c979daa9ea76bc61dffba2adabbbadc970330c330974ec0a8cf23d
MD5 940309ef1fe867d4420f5e17efce584d
BLAKE2b-256 76b51f852644eacc71514ab669af6b872c377075c42e7de47eb49932c278d317

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a5a8eeee1877f75d805b3a2f2cfb891bda143c189f0e5f0268024fe850614dc
MD5 e05db7c31407e7505eb62ba70f33ca5b
BLAKE2b-256 e804fdae3b001467d74d9460a917a062c17916e7cdc1fd253265d4559c1a7e5c

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 494712e1ac79a5bf0a4d81115b3d7782f238d003910c45188db8e36150541883
MD5 ff5f7805d4f81c99a8efaaed66cd3e9b
BLAKE2b-256 c78715a80dbb967a13e524bb709b93a7b92cb3c8cdc09948df3366a599c510ef

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1fc44a1f5e7fcd984accc996a215d0828210cfd5ba0f209b2d4ec595e283c26
MD5 34d9892ff1fa255d208258a3d22e9496
BLAKE2b-256 0ac72dab9e13cb4ac17eecb3043e14576ad11b354342e4a3c8627f9ad761e9fa

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9e9fdbf2f0c33b9d0aae60882ac87c6f0604f307e1a28474e6b848880561082
MD5 6b4d290e4ea5909c020e633262389d67
BLAKE2b-256 59853e8e92942fdc487e147d30cc5548517944145285c754864ff590b91250e0

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78ef19ed9d6ea58cd0038ffbba86d56243f67bf6230c12c1a2fb647433e3dca4
MD5 eaf91d94fdccef8d940647a5b9a42deb
BLAKE2b-256 ba35b9fc98bb91c501d1a57d028a6efdaa4941535f3880907338d2be5e1f1e54

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9cf58080cd77ce651bfc0d156048b858ef37fbf47ce3c4a137ee811e6c1bea5
MD5 d510a7296f5608a5a8087adf7bf5fb40
BLAKE2b-256 f2fe93bfdbfa73d3319624f603afa524094512683f7586b2454d129cb8bef9c8

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbc412abd7689fe3c4ab8cbf45778a2bd284f2c842f7a523f30d9c5dc83d0f45
MD5 59989843a6b35b684a239cdb3e044006
BLAKE2b-256 27e158e648d55fa8aad9a36962b1fecd246d25525c22d0fb03db00a1b2c40a85

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92228d8030d19514fd56d90efe2f1d2461d87466c345766928b6b192dd317ddc
MD5 6b04de62d1dace496ab7323e1c66f1b5
BLAKE2b-256 2bed9560c84f578d5b21ba74739d716a89e4525327d013d47b68985ddc21492c

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c274a1af91cc704efb123f6510bf8583125e344d45d127854f380ad39d12d1e8
MD5 0ae22bee7e9f7140b7dfbd161e2f7ca2
BLAKE2b-256 f6b7372edbdbbad669d2f9adb2b449bbf28187410a901a5b6df2fced256e3d6b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44f60f8c8b12c24db08764918c96f2d6990d528641cbdd097c6a2e06f5868843
MD5 33228da44f9760f4fed3e224ee709091
BLAKE2b-256 08e0d785f047d581b0c58203eef3c37d834d3ab3f9e9dd61392aa7416034388d

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e383ce5a9022c52ac727998e239dc084e51aed916bc257d293e45959eea41e26
MD5 1a802e11fad0fce6afb655e01043cad2
BLAKE2b-256 d7981d8149464c48e087cb0dced2bbfd487dca6e819fd82a308517a96a5e2363

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f78a0400189d8cd71df964066f15b76cca9b473d965ef142f9a52cb0c3b0898
MD5 96599f41b217158c5ef244de295aa2f6
BLAKE2b-256 c7db4f5276f6cdaaeb4b36721cba202743322a4d568c0da07e242fa3184cbe61

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764375bd603afe53ce81e31200f6f359a4b7b6fd72eca53d727d0a1e91295959
MD5 dcc7d9967dca83a3352bec9e35457ca0
BLAKE2b-256 3c9c82a4b79dc4411ef5a7b50e13d7568a8c7696be95a9fb7a011a607fe48f41

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0742277717d665d43d94cb52730a948fe638fdb803a2d09692a3a36b13274e28
MD5 bdcc6cadff2f968cbeec952e18d17383
BLAKE2b-256 df94cc3323608215839643fa8dfd7bdf5c0322a7113b0f902345e5f398267c51

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5ee01f55912a84e0b43917e2c4670883c13b7f2ee2e6fff54ee73b224960fd6
MD5 e37b415d46447da6abf3146df7502b71
BLAKE2b-256 528eef95555ce274f48011589debe8b9ef820d1bdf413a9ff25e25ef7f9c65e5

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c869898b0877fdd9abcfc7d3bdec10d6dcc63614ff30f985cdf628cea5f41d3
MD5 63d39de29ded13a457b54d55b8fe94f3
BLAKE2b-256 ba047feb121eae914558c3da6acb14af95790074627d73feaf8d454a734eeb31

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b502bd5b138f1632c76098c5fa172a21f31356c6cc8e83fc0c233f3090431d1
MD5 44b867b4cfa0d68c674af1dde6ac8950
BLAKE2b-256 85b373179370ceebc55a5c908ddba088cb1e04ad8da42f9ddca4f4a5b0d56ac8

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c84d04d85e1a266c688ce6d15d4694621be7f6a628833ce1fb74d1b699ce1ac1
MD5 3c252e18faa970a0215756a2b227ae14
BLAKE2b-256 61f79d6352330763cfb5c2216bc1cc9aa2a20b2d64a48ffcae71fe227834736a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd587fe6883aed7982d62f16239495121f45d44b93b77f93ad6370c231a6ec75
MD5 d387ba619786ab5caa94138a1f72ce02
BLAKE2b-256 428d3d1c40ac8592d3adba917a0dc3ed71bbcd666036a26ff016b7115ffe3681

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d60ea8f3195adc5cbf20f267a4ed235c547b47f88173d5a223088834140434
MD5 b86842343a4a1325991e41569e1023ce
BLAKE2b-256 aee67737106e07a4a8db2a77b5faa45932328355665b1f54b739c66f77d3f0aa

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 042e9ebdeeb7c562ffc68585fcdb7d265b63251a2e31771dd8255499fcb1cc1a
MD5 cb9a386fd4ee0605abe7e7967807a2bc
BLAKE2b-256 61756b4821e90defa93609b1470f40cdda4f56b04b55f540d72e71fcf599e3f9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cf06c1e3e5eb4aa8c823695986b8000f2d78432c6d87e133a1cbc2f8cc6c201
MD5 6a02146fe84b0fddfd1ed868f554de5f
BLAKE2b-256 b7479286484c866ed60d1188eceb15cb133d319aae6d947028f3303e68dd6889

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 208.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b0f180c2d70bd2302d253261dbaca4a23f839d8664021dd8ad7c374be5aefaea
MD5 320b87fac5fcebeb4f3b8bc598ebfcb1
BLAKE2b-256 bd050bf0c6d4483303515f8eb9e2083da01d4c100c4f0d75bf4e52977787472a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b365861692186de2f3dfa1c9111055854ac07b7e46bda892ae307474ba6193d4
MD5 ece44c0f2f379b01f2f4dab90cb92e98
BLAKE2b-256 9fe59666c8505d97975ea8af684bca31a0ddee4bdc12bb86cb8d3f6b3649aade

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db49b323d07a6e8eafe1b43b79729cdf48785e57ad5294d5cb1a8073e2e4a68f
MD5 c0020b0c85fe67559187b6209f1f9e43
BLAKE2b-256 170a49f7c8efd673c312f5a37105d96a49e74f8582b86b10f71eda2d8f08c14b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d973bace91a9e6d533e683cd2f499e9f26984bc9c1d04ccb8da8b80576b0f1fe
MD5 009ac982f85e9d949e62c9a8a28d3132
BLAKE2b-256 9c87c77f0fbf4679f50e1c6c3fe11dbf048c934b46a78e5846ba4db2f647937b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b039973660c2ce8d466e68ff61af51dad16ddc1b759769f344bb35b2b51ff1b7
MD5 887d06d7c1c49e4a92e39f02285cbd4b
BLAKE2b-256 ff7f4276736e1531486bdccb9464e5a266f021dc18ec57f1e69c8247fb299ad1

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba52d928e4f4ba9a02c438d1ec6902319ee0e5da3dfda5f3607b763e2ca1efc8
MD5 4840204fd7d0c9abb3f0bd5d0013c638
BLAKE2b-256 e8a2ae3034959454e315e45c3aacb9bcff52334468c560d9133f0c38c0f62863

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87eff27ed316375b8dacdb185b9c4510e72b3be0fc5de98fa39ef38c673ab408
MD5 583aec30cd7cad71a055cc44036eee31
BLAKE2b-256 0cafb717edc045ffcab24018cb5bc35c87b04f05363605b14487bfe6946ff06e

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47472b7288395b4b2c05e389ea2f772a1777e5a589893eea23ff21b377cc1152
MD5 069ea37a5d86c885a116f9610d9ce05c
BLAKE2b-256 8967c0fa22940e2e6fe8da6f59ed30704f84a22865a7c69642ea39b750d24c5f

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddb454e2578d1e11b7bc49f4e166bb91079881941cdbd1462b7ef6e046180d9e
MD5 0dcc9c369b76e6aaccc7fdc61396f31e
BLAKE2b-256 fd5925b5e23505f3c30a16bc206f6facd507e9879723a30463900ad56cf9ef69

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ac530910e9a22df9134e93fec3ccc09a73d17f8f3a777902a3dd3f04cba84ea
MD5 36f6d8dc090f307dbb72038b587a1b4d
BLAKE2b-256 732a428a7df08843ef81d98ba0e130ab8a15dcc3d42e93433c363c6520f6b37a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acf59b32359851642b80732e14c8891b0d4cac29e392ad99ce37fd80de1126d8
MD5 cc88b684c91e5c3d7c3a02765d4d2328
BLAKE2b-256 0263fba7babb81172106b3e482483d4f0383d134be6a37687f2a81f941364ea0

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 693e7a415b6b0a78027b76665f8426acba84bba6fa15270adbf1ee4c4cd2e84c
MD5 155d8226553166c97816977e3e2d4b5d
BLAKE2b-256 4d74152a37c272fdb3a0b329d54a124727836924217819e45ec560b39185edc4

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 209.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a88298ddd94a72c3eccc0f5bf6a1182c2ee38a79fb56492260136c7dd065ec20
MD5 b94cd6e62a72cf5f5ccb66dfa6b5daf4
BLAKE2b-256 46f0792a6745a5844d4f4f2ad46d83572c5be1ef08eca16c77f4bdc13f291662

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463f25da3367ece5ceee1be53ed0ff04f3ebbd5b6c900d72c713ae4718e87a3d
MD5 8610d7baa7933ad4eebc75b6b7268f7f
BLAKE2b-256 b071258f9bd5055dbc175546c017d502087198d5ae9bf68c7caf2b85fddd5709

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0aa7aba25dbd14635ca5bf863cd141abfcbafa65b1408256fccc2620c99d3b1
MD5 527f96f09413ff52c475dd10c333f214
BLAKE2b-256 7d0f82e98803fe8135ff0972286493d490ecda7a7cd88aef7cbf59f725852e71

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39802ebb90bbc4121bef07a6700722945a357103efd3738386cb833d4c0b1ca3
MD5 c7188ccec7caea5c974bbf89a4badae3
BLAKE2b-256 8eceb01acf3f447830ca60deaca18e3ed6a2098c4d2a36de1e711e61a52f4c09

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79fa6884adf3d073cba6a8d035e634f7ae0163504fb68c9619782d7ce4f3b80c
MD5 2948576b834e85248739ea87afcdf6a9
BLAKE2b-256 7a96bfd5e2ee144d7dba938cfe85fa8af972bf6b706561525a5952e3ae883523

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dcddab24d55300dc8aafea6088bece94f48d35dc7e5c3efcbff99755d23d75c
MD5 0d0ff8ee23fe70bcbd26ec2d51ccf96b
BLAKE2b-256 caa5950b7a7dac2578270d9f5c2346ecfc64784612edd1715437207aa3b5fe10

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 438614dd099657d06798431888b6d554c543485f71202313736b15e11887dea8
MD5 5178c3d80058946c9e9c3cf1d5c7c19d
BLAKE2b-256 a5b2328f2167cf97897a8e8be13ff0673033381cb58d989ad99690ade0ccbee0

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ab294bc92663522b1593564e2d23befd37f41d11ad0dc67ca04bab38f825dd9
MD5 cc498d26027b77db0ca83ae056e1d0ae
BLAKE2b-256 8616025ff2cde8614abd95192154de8454085e0973061598fc171722e234cdb4

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33dc3581d4cd7bdee87352e12a14421a49500b60e151ee3f7029556ff050d6c9
MD5 12de1f26dd03ae5db965a72d777f6db5
BLAKE2b-256 07631dad973a420382c348ad26ba61b5e19d6bc73fac77f376e604fff97e0e54

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d42c6aafb7373fdf79d119ddb98e6ca7f9fca6e4cb80edfba2a498ffd7a904d
MD5 25048273f9e3866c81d96f20b611e962
BLAKE2b-256 269360d4c472e81c8523c1978f35c904467fa9d11710ad4b976a6d18734aac26

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7dcff093ac3f31fd70fafbaf4ccca2b1a6c875d273aa4f64ebe2d9c4c031f7d
MD5 5d8c222508a5337d36f9e59f8c9d3ae7
BLAKE2b-256 14759527c05532149b14685f5a2144c143df99f2cf104d814c8cc811b07d759d

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ba373bc784a9e5824b4fc41e42b6fad722435d9e7af786f657aec8f592caa24
MD5 ffa31655e76ffc4785171b33f8e596db
BLAKE2b-256 1d2a7dd890c62ea8257b17638320afc74e125097329cfbec2886625ea1e51507

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-win32.whl.

File metadata

  • Download URL: shr_parser-0.1.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 208.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 799be5344cdf8be46171aabf248ec3f9424fed8cd4858cbe1557f73f4a0c9037
MD5 d2d36c8ea3201f6f632c9e0282cd92d7
BLAKE2b-256 05d1a29b16d858556e46cad55d0b405557cda2ba103cea98a5a478f70852b74d

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4903c914c49df79404bbc351fb56ce8d8c785f975e58bc29791229449bd07b55
MD5 ceda2b36c330edfa214c2d5303879877
BLAKE2b-256 109cbdf0a9f21b4828455d3e2211d212de3165794349787e1f40254fbf63b60d

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f19027f50490b99c279838cfca47a91b4de273ba273ae5f82775f56c2f9c091
MD5 48f5e7001f91776ad88decdd18a44630
BLAKE2b-256 6bf0c739a3c4cb3a3b0fa55d835cdb4bc12ba96e5f1d15a5426e4dbfae7c2ab5

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c71d108c47b57b87cf4e0d0f11b00fff280b75c3a6886954fe8b37d5416de9f5
MD5 aca9485c37871b08e894dc7eab68a8e3
BLAKE2b-256 d8e68f58a18b765288f34f3c6ecb6c81635a2eb528b4d8f18756ec1bf8574356

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07ef4fa523760cb3a1eff3a19de7e1bf5a79f4e26b503194c3011bfc4cac8ee8
MD5 988b1400f28e6e8b2ba3ea0f3c4fd5d5
BLAKE2b-256 3dd94f190619c22bcf75ab01087fe8b370b97918585e084d8653d7415d399d69

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee373be5c03e94d31f21d37f10492a5592896256ddb6be026fe6df8e2d0a5f5f
MD5 05da239c342b83412d4a7dc9e62b22ce
BLAKE2b-256 a083b9d74713a653796ca5c163515ab6421365d18410f244b3e2dd13876be750

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcad5358d8cf2c835492983724c1205681a6160ec74bfa2c85e5301f0c533d9a
MD5 37750bce640e16aa701f9662a31e2df3
BLAKE2b-256 316df01902eb26f06fb6cd4903a972b663b94e823d38a93615e9db4657ca7bc9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3acaccadce9c6eca37d40ba4578aa6a143a7a6e94cd4a9dec3421b77f0415df9
MD5 f102ba9689b0b64e604905cea19cdde1
BLAKE2b-256 762026c9dc88cc326004731e2906f2f418aa3d595391cb3567bc72aa4f3a4e10

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c648647eabfeb5e05825869f12888572c229c6615a2ed97f4adfe84f389a2905
MD5 b81babcd16cdaf79043da55ae7177d48
BLAKE2b-256 8356d27a02f6b23f36ef18233f6837c516a162f5fd63739d6c7994e0625af9c9

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3a9474ae0926d66c6d3b95cd1194b08ab5867b6be4f3d19d69a686dd756b679
MD5 840c8151bb072ae1e2da3a3aa0363509
BLAKE2b-256 e08a8b5f108b1280ed156b0a8b4f5b024a81fd9f4d2d33f4fd3bb1f17b0d087a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f62f0a61053b27a7124d7088ea587a764d63fdcf82979d2942b555c99f217f93
MD5 73da19257fd9587a953a00225becbe08
BLAKE2b-256 89e7d6c3d526b5afb5c17e6146960246881f0552eeb27b4c1305326ee9406249

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