Skip to main content

Parses sweeps from a Signal Hound Spike file.

Project description

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:

import shr_parser

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

# Create a parser instance
parser = shr_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.6.tar.gz (19.7 kB view details)

Uploaded Source

Built Distributions

shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (527.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (552.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (630.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (543.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (376.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (528.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (553.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (631.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (543.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (378.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (528.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (554.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (631.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (544.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-cp312-none-win_amd64.whl (204.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

shr_parser-0.1.6-cp312-none-win32.whl (194.2 kB view details)

Uploaded CPython 3.12 Windows x86

shr_parser-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (551.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

shr_parser-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (629.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (542.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (412.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (400.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (375.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (308.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

shr_parser-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

shr_parser-0.1.6-cp311-none-win_amd64.whl (205.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

shr_parser-0.1.6-cp311-none-win32.whl (194.9 kB view details)

Uploaded CPython 3.11 Windows x86

shr_parser-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (552.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

shr_parser-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (631.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (542.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (413.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (376.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (309.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

shr_parser-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (312.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

shr_parser-0.1.6-cp310-none-win_amd64.whl (205.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

shr_parser-0.1.6-cp310-none-win32.whl (194.5 kB view details)

Uploaded CPython 3.10 Windows x86

shr_parser-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (527.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (552.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

shr_parser-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (631.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (542.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (412.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (376.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (309.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

shr_parser-0.1.6-cp39-none-win_amd64.whl (206.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

shr_parser-0.1.6-cp39-none-win32.whl (195.6 kB view details)

Uploaded CPython 3.9 Windows x86

shr_parser-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (527.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (555.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

shr_parser-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (631.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (543.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (378.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

shr_parser-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (310.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

shr_parser-0.1.6-cp38-none-win_amd64.whl (206.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

shr_parser-0.1.6-cp38-none-win32.whl (195.7 kB view details)

Uploaded CPython 3.8 Windows x86

shr_parser-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

shr_parser-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (553.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

shr_parser-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (631.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

shr_parser-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (413.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (378.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

shr_parser-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for shr_parser-0.1.6.tar.gz
Algorithm Hash digest
SHA256 99e840955bfddeb54fc2758a5bcbadeb9ebcd49af45094f0c61583d8a9f47397
MD5 3650fa4bd3b7d4276422849898acae5a
BLAKE2b-256 60446c441103595f2b3e743296078994f812379445eddc8c4959087c855c986a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ac6c47c6701cc644c6cee9eba8162189463d736674840f0645ff3985d288f4b
MD5 113dda5208186d5fd1861f4bb3c7d1fd
BLAKE2b-256 4ba492a5ed9cd0496299b07e7555ac0244137fc66db9c319172ef14f4d2f2ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f95da6e2ca92f20df52bb55feb5cbfa952e8e0075018617bcf74c21ac931c2f
MD5 4891610a97b565a3dc1db5be1eae8d04
BLAKE2b-256 d2b71acb2113d7b6c416c75de6d10ce609f20db8bce60a24f4973395ad9f2769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caacb612e5d8de82a85fd81096d142d297ffb0727cf49bcc9c31266c3e4b7c53
MD5 d73f549f42f356301eacf5e23358d697
BLAKE2b-256 099c169dfefde8fae5476f40114984a29edb83eb68bdaf15267c35b6fea21c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5015c9c9dcc81a18e7ddf9bbd6767cbf1abd8a88156e0459d861a393bb747c97
MD5 ca8d1462169f3f72ad292db2dd358ad3
BLAKE2b-256 7f76ab351a82a83cd9312c766dd659c8b3e5d91ab6d9fcc50c3125d504682818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23835673ebca37a875cfd31419b72071618189459b96a76a4f6f912e177e8eec
MD5 b0a169f621539899e0df40e0ae674118
BLAKE2b-256 6791e06dc48b029eedf30a785ead50b5ff0a72a83c4f76041d351a0fa165adb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e5cfa4894c13afe27a186fefcbcdd511c8a2602c4c1e6341f10a93b2b1ae9bb
MD5 5926e2fa7623765149018dc93ea1f4d1
BLAKE2b-256 dc76cd27b7ee2691ba03bd30ccad65c7559d27fec37f09e124556d553710160c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 121a7853be945799dd5238bffaa68b9f5bf4344872271340c99743dbc1771431
MD5 4e92262ff0a456dbc8c8ff3b1825189b
BLAKE2b-256 8b3a0ba73897e36ae0605a166c2dd340b8e4f97e381cf4b668c433f8fbe38b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d23cd4b463155a91b81d4e28a310834e934bf728715ab136d89fa062f256072
MD5 48a3cf3120b279d08accef7ae3b9f567
BLAKE2b-256 a4975e25c8fa2f365e040a736743c0f8c1c571006e7db1a31eed9a7e4ee6b1bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9254041c9bdc1d19802bdcf6f3e3597c1967856a522abd4c4b337dbc79180976
MD5 c891c3e909b367418efd450aa18cf7da
BLAKE2b-256 989850b09b3bdfe70a0569c368ecad60b90157989b7d5a29f1e4d88392bc7864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 637a65f7187b52a3c9da41960175d82eecdf7802e03a22edd9506a69bf82cf22
MD5 49945f58a79dec70be9cd02c5ff7a1ef
BLAKE2b-256 5fb191462459f0f0fc5813923787508bfdc6a5775b0d592d545dd57112b07905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7efb62c6b0556830d2e7813f68e9c8b2ded73c661b35522a220b4de87e3be7a
MD5 15508c0aa606ff63a10e9cd975185e5d
BLAKE2b-256 c579c1ff20c3043e174498854e54e716b7e4253488b972682447c250083f84f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd1cc0ff31201ec8abeba9f5438f1c27441b74cdd88363fc912c08c512c3d4cc
MD5 47775426b725883e8c08df346619f706
BLAKE2b-256 46cba2d62180a2233f76b0ebc4ebbbbda40d86fb38903ccfb5158bd717d01da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bc485c34ff08726fb5061e2dda229da6b4e77b7a327f282b3ff715a243ec3de
MD5 b32cf99e94dd05f65a1a1901f287d39c
BLAKE2b-256 db917a78b863b12f7d7934ccece540514aa1c1c724ba017c3c16d63c77e10a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6730c1480875002e65c8ddee33105dfb693cf27c9e4cd971447d4b6f7e29e134
MD5 74b54502010db06ce31aaf405904249f
BLAKE2b-256 d1e7c8283c129a9539fbcbaf3887fe85f243a2fd00c34a3c7d57cba94dc60d55

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68e512ab9fff5ab933b3d7273eeed699d3851484a8ba7e0bd869b339c21b4873
MD5 9903d3c53fc4cfd7c28f083fd9dcf4b6
BLAKE2b-256 532b00ef74bed0e9dd77f9e0731571b51d81e5f5191033a683343987a5e3dbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df9fd52892b2ee7cd31a0dd1bc93830fd285cda4b4492e7c28b1dfacea218717
MD5 fe190a8bc234d6481cc29389a1fbc7c0
BLAKE2b-256 d440349d469ad6e06becdce38d79bd5f93e130d66bc7d15c5ece495756b71b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a7f8d5f2f70e4135a8fa6b59458a7e773266fff2f1424f7b36dadfb286dde9e
MD5 28e554dbe7c2b5513419101a4300fa5d
BLAKE2b-256 5cdef6414df9009843a61b1d6ee4ede0e8eb44ff8245a97212bc4ee08d186e87

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21041b180fc92572f257410c0b63e90da14509eb51a18a6f8dc41edaa97cd039
MD5 748c7590d566ccf32f54a88082f43b6a
BLAKE2b-256 ac09bd3d90223d61bc1322e8e91bd59e1b6be84ef49ccf24a98c5e6ec37ba28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9509bf27411bab87dc2076a45b79077081712b209c2daaffdf7e5aac4206c77a
MD5 9ed544a74c61f627fb507974066ae553
BLAKE2b-256 e18258e8482408d1d7ee96a579a7f12fbac263931cdc7ffa59872af2ec8401a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7e40bf89b2f0b079635027dcfce12cbc9b10b5a85804dc3f56ca68298da6268
MD5 b38c23a555fc820d470f5797661e0832
BLAKE2b-256 264c3dd70246d43c0e4d6c4fb4b16be0760de17ef10a58cd12648edd5f23ceac

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a21d8f10a13746e599a97db54377d12439b2732f6ae8b3824533287cfc30f3
MD5 d1e2ae13258b9f470e783dc23d5ad165
BLAKE2b-256 13c525a509b75a4d6f634e1aa52f22572ef2ebde4e0fbd6159fd471add50f43b

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d03428aeb9dfcfc08eefce7fb48182b4c32fca6ba252fac27e68872f43aad36
MD5 15f2e8bd8526b4e9db5f51a8ca644c90
BLAKE2b-256 f1a770a965e3570a0079db134a46e17e3cb4c254bbe8681c234efe87aa863627

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa3fb986b1e18c7caaeffdad82b462f942ddeb550a58c1cbbec9c337708a914a
MD5 507c1fb2f4f4c0dbdd3fd029faafddde
BLAKE2b-256 97315738fbb22bb8b2afed9f4c904a998d9e721768702432c199f347e743284c

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffddbdf3b7982b39b5851198a5ef752277e9d9480f26d143c4f0bdcd472ca19e
MD5 41b70b3e9e30d454fca8b8262fbbf510
BLAKE2b-256 aade9ca8f36d9ef6b963a60de701de743619be1d5ed013898ed317c8b4d83942

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc581112730672d6d0d6377a0c0326782ed0e6ed092af65d23345cece4b03439
MD5 1b09ef614508efe13639a2e9aad1fb09
BLAKE2b-256 472cd164a34427982ca127ac77a17f1f4a02c84d56e44b2defd6e07f549c085a

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 193c08bf9f9685e2f9d2daa701fe9408b3d0f546d5ec7a9c6489d1248b764873
MD5 f60f15ee007da56338044c55296fc729
BLAKE2b-256 7e4e963b8e22ea1994c587aec87899203b900d29a1fc22889ef3c8d2f28470a8

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00c99fdebd7ee48bffab2c0946d87ef5c3661c99a551999430181c35d9f2477d
MD5 33dbd384028c546c339639746128e553
BLAKE2b-256 b2db61726af3ef5d7b0ec1f4f778f17c86d5cd791bc6bbeef31f03aca2ad65a3

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0433f2522db184d2dc474ab5809ea94f24ae3cf7acacecdf09ea29a61ed0d2d0
MD5 1a8d192ba4e249be2fb69656be2df42a
BLAKE2b-256 c05df2785f756d74630fcd4cd38c0b28c33d6ca880bd9b17856f51d799399d89

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 190481c2f2d29e0037e04b8cb623fe9077cb301e09a767ad32319896dbd8933f
MD5 499a4756e7a7bbe4d3968d738c742e08
BLAKE2b-256 39cfbe0a22b4cf619066d429899b14b01ecb7375642a8db631dd74d13c603e3e

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp312-none-win32.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3801b8758634d0b3cb4f8c9bd23b5a62fac7c171acd104512a09c26df89754c7
MD5 62edee4e9d1cc949471e5c2c19c71977
BLAKE2b-256 7b53823b1428d495934d0c5ebea86b091ab8894036767a078961cc1bba0e7bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d255125dbcbb057d4ac81be49b82298469654144cf917a24f7f943f4ea6df20f
MD5 a1e939ec3ead7f5fff76dbbb7d42f6e6
BLAKE2b-256 dc1be9882cfc7b39a4d8c93d6ab189ff86d936a1191b0392ca0eeb0cdaacdfff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38323de4576904396cd201f8afb1d1c117d1523272524b9cc16450adb5b1a6e0
MD5 31acea6f9262522067bc387706e27195
BLAKE2b-256 2bd93445af79132c1297fd1c373a6bb4764a1bf64dea406fa5e9a6a8a11418a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66c0d3841c4d2b356095835cc49a8365649381d33dcd76d50516ed4f02784d91
MD5 de323567d6129fb6fabf6f8acfd899e7
BLAKE2b-256 337352378754980d2efa4ba6cbd46e3acd182919921cbdf800c8d0343d6c742b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3924851be8b9b87066a19a4ac78627e00f64bfb649c589e0218b2b90fb76c7b
MD5 b332fbbaa5556d9036e9b161aede8e89
BLAKE2b-256 c28ba09692c67f0ad1f26ee223b992c88106171371c7402c0d7507e6bbedaf31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c63b73f26fc1f32741955148036474ddc2cd71704613dba0d05d47b3faf3801
MD5 af52d930d1add25735fac32e29af963e
BLAKE2b-256 018d1947f5a538a9aea5f0d2600f930ffcd4e9bf1d0b2e369469ac40a8728c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 830118f4ae41f2875e6151b99a9b0a6186b523f5bfc7447e096186c31fcf9dfb
MD5 91251e050189e9e6511667b05007d46d
BLAKE2b-256 9a1f26f715c4d7581639be920a4e2ee77d7afda85f0de8b1662918797fd2d08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cf8df007c4cf8bc5240a56e2dc1bdc0d2d4c43f0281a5b8f038418068d3ed50
MD5 f0b4abea8eb29a04f641b0c7bf49dd32
BLAKE2b-256 a28f72eed48340c3fc62c57c28a3997ecd899295173d0d8095f39ab6125985ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b771454023aa26ccf2974e5d87027694518e50ade3083c37cced34aea9466db9
MD5 91c41bc94c70821b6cdc336d51d2538f
BLAKE2b-256 17f19596e28c4944c7886c97c15fc37b41d6301438485d6cd0792b20491b2c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9547892b9d01632d2898fb702e24aca7dda302f579463b9d7d8488899563d06f
MD5 de30f560df0c54775d9634ff49f06dd1
BLAKE2b-256 3784dcc2e39b35a377db6e184fdb330cfad4199b1a94638f8e3562b44806bbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc1b05fb44eea4a069e3e0ae97d61f2b60553ab8b8d600b62916a2c1dc61da69
MD5 ef6a81b3135ec220174afde42f0615b8
BLAKE2b-256 59734afece1e57e8427267517acd0222105ef7585f131ed3cf249c86251cc138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0082b9c829bedbec4d65587c100de0b0199fe12c182d9769b5cd9084df4e637
MD5 b7d5cf434e901803cbee1b7e401653bf
BLAKE2b-256 81e347ba6ee3434877f7b8d5d3e6c2de0cafd871ec60387cd92bdf260d7a317c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f13d248eb41e01cd8a6d8ab63eb89cb4f59178df21f60946d16d1862d553139
MD5 27667a999e9f5c9bd7af23180fc9c42d
BLAKE2b-256 73a558ca9e790eb12a31b3c1d00fa426b0c7f25adb76251fd734eba2c0dd0480

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e38bf71da89a6466bb040d1b7ed63ae9cef0af1ffea0529146b20948539e6c6b
MD5 a649561ebd59e543ad4a747e1ac3a3e6
BLAKE2b-256 32ab54082f83f3e1a43f434df638296be68fa462c01537639c09925dd6fa8323

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp311-none-win32.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e4921a5b2538e5bf6ee1a8a8d526bc90dc8ca556f01e7602bea6ab1a68061fbd
MD5 7da7e91cbc9da09cc81c1ac3088518ad
BLAKE2b-256 6010d2fc1100f7fbae593f185d39d3a27c7d91cae9620a331158f7ddb1717847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46bcbe0d2c1c37f167c3bfc42e33c6f59cde96e3e5454b70ca052ff17cbd9d15
MD5 ef963694bc93ef3827b4f154f80f248d
BLAKE2b-256 8ea15610ada88a8b0c3674a17acda709e0a8049da7e79dd0939417adb65cba80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 111fef132aa24ad592fe2a53605678272d960494cba33080739a79985f453ba4
MD5 7276de03ba214f4dc8b844c038289850
BLAKE2b-256 9fcd615e0d4019d3e369b21d8c873514193fd3372f06d5c1a0a1a08dd63bb011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2add88c131cf34d666983e2938d92e9f7c2c52dcc3a73bbdfec162f5f4bd67dc
MD5 30b1d22b50cfba58feaa1512984e95ad
BLAKE2b-256 2426c5d0189544e31c79d1fa316897b0125bbfb82167990b2aa02b7cfed9d1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f14c3a1ac279fee2f46aa92b4ccc0228cd527197cb533e51826310c3a5996777
MD5 5c3bc0cf8e6f81be5b2a48f89f44154a
BLAKE2b-256 57d7384a12ba3656b49cf765f742e5cc870499dd72d95cde35d15dab68771cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71898fc18ad3615ca324b19d3f67ae5a26b1d826bd80abbea5000ca138a36055
MD5 c30254eb21a20eef2e02c0cff4eb0091
BLAKE2b-256 88850721c53f544ec201f29b681334f11cedb743eb343be4ea8d0fdf624ed4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae0bbbe5304fe6576d2efda93ce81658c9078e95846be14ec7ce6b4a1611758c
MD5 1d287c9d4beef2b73920ed3e47737642
BLAKE2b-256 0656bbe7befde57b258e8c3d37e2f0377dd37350f95e156edb3184c8152fef5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bafb167b59351c4761f9097779eed87ece765b6257d16c92a5b1d0e4935190ec
MD5 59a399f152ca0e9f4ce91e47cd13472f
BLAKE2b-256 12a5f6f75ce34cb685541da6b60c2f1059731994c535ca11a31ec9b7e182b4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb4ca5ba3bab4e4adee88cb60fd8f3c62f2594de754549ae339180886908e818
MD5 fb33bfcfa18d855a69c2075bdfcfa70f
BLAKE2b-256 ea2633f81b2e4ceef7980965812318af9dabaa989df63f5fb211df9480adacdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c4dcb218d5c325ac7ce891ae56c6964a3d4e1f77bb347637fca32b6271cd99e
MD5 e7cc32bfcb2c9871f0a2c8112041710a
BLAKE2b-256 4c676361a17444e044f9d474fd2735da5b10ba7cd7b0f08bc812aeda0d5f98ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b78cb6a6a35cea045d4fe3d44610809f193ee6cf9619d271ffe3e0b488be42e5
MD5 402907411886174d46fa0dcc1096ae1d
BLAKE2b-256 98cb07ee4d040a428b9c93b3810e035a25b646709dbacab2b1b53ed4d4d4f804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a639bb054b54ebf15e8dd460945a93d778f064ea63ed2e8c2b02a4e47d7553e6
MD5 897f6080b656e84f8475a290f833c503
BLAKE2b-256 2a527af5f56d73d978f5b5478eb6c2bae4fa4e0b9ffd3702f914a7d79201c09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfb6ecc14997ae1938483d1a9887ebaa8b0822988d3353a7ff259e536da50d44
MD5 0cfe6b548d50a7d5c7135d83f9b3b4d3
BLAKE2b-256 a5bfe364c23862bc907a93d01bf4970d199e12ae3348eb50a54725f580e2b7a3

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 85477a71f14759824569b7a87829b941b04871ff9b56461329a008a64a4866fe
MD5 0acb2f448cf3b172f0d9cf716368c215
BLAKE2b-256 e4a8130152a53ac4dc77873ee3401e4e1c32d858c3fd3068eacdcee3041d65dd

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp310-none-win32.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 41855f9a5e778294cf470ec2f4af2746599a01f2bb411103b1dcdf8a580b77c0
MD5 6aabd49531abeabdd3bea0f526c1c73c
BLAKE2b-256 4fba623f1ed65572cf301ef9117751a4991fd50b3a0f155baa5ae276487415c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42bab4294d02fd005dd8e031d2d7bb5d5db1ac29ae488f44febfb2adf591ba57
MD5 a51e1e7c9039507a657782ea6a1bdd4f
BLAKE2b-256 80a1e5ecdf3bf1a340b46021659a4679fb439054de1e6b5ecc2c480945d9c7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f15bb0830011e6f565d86c7153591a22d38e6a558d304bede57f049ac59c31b4
MD5 a3e6a88e31dfe702e803ee051b512e21
BLAKE2b-256 61d2a2bd643ea325f910cb646de2e3b4b558bb7f413e72f0acf50912396d54a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22c8d374c0aebc3d642fd1a1fd723bbb9cfe35d657365f84252dcb4c7c79275f
MD5 89cce6f521544e839cddcf16d2a7e08d
BLAKE2b-256 77acdcf0e22c1a63306de930c8c3d07ea4d1d4d65ac66200cd91f23806e89f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ffa3bcc1605ba7101522c9d652bd4bcc7df835ea8a74b10e0668b4f81d1ec43
MD5 e22ea12ed20504ef5720343132955380
BLAKE2b-256 56d89959f0ea84d97bb2c334025b6aeec59489331ae4c30539de099f441959de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98d3ca7ea99cd7a38506ad59bf0ee81e3c9f4fcca80c470db286acb522696809
MD5 5da5a54e1c3f8e3ac2523e26e11fec2c
BLAKE2b-256 2791b16cae3a1ff97ffd3e3b89c74ba58d1228edca630403cab733960e7d90b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e668873d74ff32caec6bc08c622a9182b8ec6502226dbed582309031189ffd3
MD5 5f7753384c02b8d61bf960ae860d704b
BLAKE2b-256 929b53067d36537011169362e74f284cd1e485f3b4e2208a8a89c4f75f9d29a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e3d7125480972a087b8432476b3c16e0d9caec8bbd21bb6e7b7706b8d66b0f5
MD5 2a2022b16aeeb025fd2243f6dec967b4
BLAKE2b-256 09820e4105719474fe0dd22b2b5f456bd570a48ee1c63752f706760f44ceb35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c664bdd71dac6a5b08f73b6d6cb53f92472cc6a4d9a259abb35fc3b1eb57253
MD5 e42982b82e253f2101fc3764bcce9a00
BLAKE2b-256 5a5ab4394875e9e5455f50c43fc1e9231b32917f4d89c6c0a44be97e537c3e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23debfeae70c9c1d0a8658c3f8caa19bac7c2e3b5f19563be9c7a38dd92a7e07
MD5 2aa494bdd9c2495dc331b1365e7c46e6
BLAKE2b-256 b9168b1275a0f6eeea1a6fd4ec3e5e95a6ef09b6509838420cdb220572258954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38037c63cfb5931e0f05a661bfe8d4f25e48db7818f42792fce393f33e69d0f3
MD5 0bc2bf0e1870a51a24b059caec7ae12a
BLAKE2b-256 e4d475ca9a98c6476175211508ab71ee893341ac541d291b0f3db299d7767405

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afc529eca8a3cac3d291bfe929934030f424406d718c85b55f77615e49fc88d2
MD5 97880544dbdbaf3ea4eeb5f64c419de4
BLAKE2b-256 465e020fb16ea55e2c93edf9a378a9be8716668296c9010e53cd44c1a7b75e4e

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 850112ea0fe94beaaaaf6a9c7e99e19e034a387f8fc66cdcc468a29ab1edf759
MD5 82f6d272d633eff5a0ec6f390278dc31
BLAKE2b-256 0ab44120611d9ab3026c70a6c265ac0165b0225af1f6897961cfe8aedc5cf5fe

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for shr_parser-0.1.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9c78a4e7ebf9700d386356e5af2d89993c82954a97b1635c521f711728fa87f0
MD5 2f0e9bc9b0b3fb7b251d1b2c5fb793b5
BLAKE2b-256 9578b74260490650f87bcb8232ccdacc41929751d6897391ce2f5b753deec4ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f0aa1d9570f86a6569c498e96e36f5881b379bed8655b549275d1c76f42e204
MD5 3cce63abcce1a569eee34ea44ad29f62
BLAKE2b-256 e07b1d43e362741e59eb564ad0afbd41d3608dc97b1403c081ce0c9dca339c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9788e7bedc1482ae209973a1ac818dd2a52970bfb24668aeae8ef165eee7b797
MD5 8eb0c01830b2f36d3c4b23b0a0b0e77e
BLAKE2b-256 8f6415a521487d9a38da2f6f68b05aa5b10d44b00c0a16c7f82f8d6702175642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6700842df90e46fbdd470345106d21193befa8bb0bb78ac381acea95bd556dc
MD5 419e8f17750dc150b6c10b013ac9ae45
BLAKE2b-256 7fca19376ea4146dfc72457768e4ccb68a2555b274ac6bddb98acd2559cb0a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5ca1bc06401be7daccdaa7c3b4f20c02327a6f72d9359a7f5bee52ea9c6381a
MD5 5a28321edb063692cf4ee31c5501920c
BLAKE2b-256 c1f22bb4951080b9d0b5162343929b3b8e73104534c954c8f8a8407bb839a208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e1e71e75f468fd739aa68e34d6613c273494d2a537a94c9c9450734be9789fb
MD5 f4db0bf3554899adabb49fe707aca41f
BLAKE2b-256 3808dbd23de09729a19b57e626c2f771dc47c4406c09a3f0c5f155e3725eb9b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b769338258edb3b98a32fa5952124d04ed7c1007201a4c3574907b8e0fd568ff
MD5 16a75e428977513f6f36ed7f3c7de4bb
BLAKE2b-256 46f90bebc29711adde4f7ed27dca003cd89951d5b9b9e717e3dde5fd8dc1804c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a2bd4f31ad9ef0969b52ed57cb234c54d8d944d629c2b467b41c42bbcc00611
MD5 4e1d9354daa81061d1b2de07bea2bc1c
BLAKE2b-256 6dba4eb75e27d317b5bb3aaaee3493e8808c7a80d12c43e2e00bb1b16bbf7a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d23b6248e5f7c9cfce4c7643938ad8696fa39e385589d1b7f650d8142af29533
MD5 1222b9123cc01d532c1549ed8debe4e4
BLAKE2b-256 a56adcbc45d0cefeef12a7a2349cec8fa31d728bec95671a107121f9dea98dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbf2966c9c17323e433ffe1ce7dcc7f0421e6fe5bf6ac72f4aced45bdbd2f00b
MD5 4934c6641b35bf2f9b156da2b4896e65
BLAKE2b-256 43cbc73d71ce6858844f15c9247afe3e9207772ca932d8f8c8e4d61cfe274b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5af2fbe122c695b822c44af6fa4618f018c38176cf15dbd3bb011172e5e4065f
MD5 362863620e461ef924a8b472f4ecfd81
BLAKE2b-256 8460947392ed83d98a837b142d747fe729ca62d301757158a85c29aa7313aad2

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91bd438ca64fea2150c6f308c3c2f85bff1284437b2b222aa0ba0c6c0b6431f5
MD5 6828e7f68aa3927c18d143dd4506c165
BLAKE2b-256 18511042fe0fbe0f52e6ae8345e1a180724d4a0474ee709ff8ee366d72a2a939

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 33db6254dc72671fbd8df3c8e3164f97f3f53f21a213ceddd3efd7a72afe000f
MD5 685fe62fb79fa365262c400c65e7647a
BLAKE2b-256 dbb935e9fd00d4b7319cc6a72e774bfde26ba559a97b1638cfdfc3cbbdd094c2

See more details on using hashes here.

File details

Details for the file shr_parser-0.1.6-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for shr_parser-0.1.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7e35892a1fc3689f089d9ebc945c5b8aba5ff2741b0178d38d190cdb512b589a
MD5 9d074858b3ab0e493bebe4aba66cf699
BLAKE2b-256 33e85f98450fe58a43f9d2a70087af8a8d69ef2aa552865f3466150a54a4f527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2281d5bccbbaf3dbd161e977c8c3624facb4e95975b74d4ff4644ae972f37391
MD5 35109eb315b438845367a69110020c20
BLAKE2b-256 462aceac25c16be8c40fe67a8a5f2b9e0fa24faa603655032bf9d340643a6053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a458a3d07e91962f246db929ada16042c66cd415270baa4fecbcde53f51fad54
MD5 913e665d4993d948ded84642e33f1e4f
BLAKE2b-256 f5e2bd950668fcd3160be72d6e7911536b22a2bc542441c4fb2a1684b74abeef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 732cc5d5f9ac5c428c72e6736b884535ebd722b96a54bcd95c75bacf83034852
MD5 384ff15849004bd673994e152d0d28a5
BLAKE2b-256 c1fa9411e2e22716fdf9402c9e90328bf1dea3e52490a8abf90d93bd43cd962a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98a55a769430c0f806c38619ab685960b20d9af922090fe0468813469bd389d3
MD5 f17142bfee9c1bd063ac1bf7cb17cf16
BLAKE2b-256 7db1b73a6ec10762cec39773f0db3928eba7239872690f732de0deee593b82b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e5e43eb0b3805c461af4819c44e9c155f3e9e0689d447c7e4869cfe7a4492a8
MD5 75d7116a3be2c9bca4efaf0b9a4c800b
BLAKE2b-256 836e113c9cb92be08d0c4e91827f85ef6266e4a1336eb8842dc3b8071940add9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc2424359c0b60c9af69435e2fc14ca3d91522f100aab0789427b89974f6d30f
MD5 248b56bc92ed13dfc658a367d6dbb51b
BLAKE2b-256 02e5dfeea327d3d4df1a5ef48486a589a3560617ac56b5e78a8a48a180fb1809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43202ad43837a011e7555c3c6b20692b17fa675d40fcca58f31be014b1b3f101
MD5 48ebc27004c7f062d4ef823de28c64a2
BLAKE2b-256 779d3fa90d1b9515d2e59851ad7ccae2e140b1ecc0ead113e60880379e9db0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf2276f18401b7aa6549238cf0287e44d6dc0be78006b20699f1e1e729910e71
MD5 bdbf4db933371ecadadb82b0b2e927a1
BLAKE2b-256 d2bd229e62ae540538c758d02e7f8de12ecd0445210ee322a3dcceb76b79df7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 856c13dab2ca298170c23319c9ac799817d66b57de416fd2b2173bcf7081bf1e
MD5 4e052517dcbd9aeedf06656fd303fdeb
BLAKE2b-256 89b53176010715869d396b4ca7fca867d75c7ebae66ee4033026067e5beb39c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for shr_parser-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8036f070fe984ba48199b1a06fd8d04f3265a3d217c3f1ba7e0e259e18bbee93
MD5 87f6566e909565c1ef3e05f59f06b4eb
BLAKE2b-256 5d7ce29851f0e0f71a2b9c1e91ee19422dead07a5c5d38c66c9a2a521457d916

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