Skip to main content

HTML parser used by django-components written in Rust.

Project description

djc-core-html-parser

HTML parser used by django-components. Written in Rust, exposed as a Python package with maturin.

This implementation was found to be 40-50x faster than our Python implementation, taking ~90ms to parse 5 MB of HTML.

Installation

pip install djc-core-html-parser

Usage

from djc_core_html_parser import set_html_attributes

html = '<div><p>Hello</p></div>'
result, _ = set_html_attributes(
  html,
  # Add attributes to the root elements
  root_attributes=['data-root-id'],
  # Add attributes to all elements
  all_attributes=['data-v-123'],
)

To save ourselves from re-parsing the HTML, set_html_attributes returns not just the transformed HTML, but also a dictionary as the second item.

This dictionary contains a record of which HTML attributes were written to which elemenents.

To populate this dictionary, you need set watch_on_attribute to an attribute name.

Then, during the HTML transformation, we check each element for this attribute. And if the element HAS this attribute, we:

  1. Get the value of said attribute
  2. Record the attributes that were added to the element, using the value of the watched attribute as the key.
from djc_core_html_parser import set_html_attributes

html = """
  <div data-watch-id="123">
    <p data-watch-id="456">
      Hello
    </p>
  </div>
"""

result, captured = set_html_attributes(
  html,
  # Add attributes to the root elements
  root_attributes=['data-root-id'],
  # Add attributes to all elements
  all_attributes=['data-djc-tag'],
  # Watch for this attribute on elements
  watch_on_attribute='data-watch-id',
)

print(captured)
# {
#   '123': ['data-root-id', 'data-djc-tag'],
#   '456': ['data-djc-tag'],
# }

Development

  1. Setup python env

    python -m venv .venv
    
  2. Install dependencies

    pip install -r requirements-dev.txt
    

    The dev requirements also include maturin which is used packaging a Rust project as Python package.

  3. Install Rust

    See https://www.rust-lang.org/tools/install

  4. Run Rust tests

    cargo test
    
  5. Build the Python package

    maturin develop
    

    To build the production-optimized package, use maturin develop --release.

  6. Run Python tests

    pytest
    

    NOTE: When running Python tests, you need to run maturin develop first.

Deployment

Deployment is done automatically via GitHub Actions.

To publish a new version of the package, you need to:

  1. Bump the version in pyproject.toml and Cargo.toml
  2. Open a PR and merge it to main.
  3. Create a new tag on the main branch with the new version number (e.g. v1.0.0), or create a new release in the GitHub UI.

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

djc_core_html_parser-1.0.2.tar.gz (17.3 kB view details)

Uploaded Source

Built Distributions

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

djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp313-cp313-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.13Windows x86-64

djc_core_html_parser-1.0.2-cp313-cp313-win32.whl (135.9 kB view details)

Uploaded CPython 3.13Windows x86

djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (239.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core_html_parser-1.0.2-cp313-cp313-macosx_10_12_x86_64.whl (249.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djc_core_html_parser-1.0.2-cp312-cp312-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.12Windows x86-64

djc_core_html_parser-1.0.2-cp312-cp312-win32.whl (136.0 kB view details)

Uploaded CPython 3.12Windows x86

djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (239.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core_html_parser-1.0.2-cp312-cp312-macosx_10_12_x86_64.whl (249.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djc_core_html_parser-1.0.2-cp311-cp311-win_amd64.whl (141.2 kB view details)

Uploaded CPython 3.11Windows x86-64

djc_core_html_parser-1.0.2-cp311-cp311-win32.whl (135.6 kB view details)

Uploaded CPython 3.11Windows x86

djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (240.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core_html_parser-1.0.2-cp311-cp311-macosx_10_12_x86_64.whl (250.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djc_core_html_parser-1.0.2-cp310-cp310-win_amd64.whl (141.2 kB view details)

Uploaded CPython 3.10Windows x86-64

djc_core_html_parser-1.0.2-cp310-cp310-win32.whl (135.6 kB view details)

Uploaded CPython 3.10Windows x86

djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-cp39-cp39-win_amd64.whl (141.2 kB view details)

Uploaded CPython 3.9Windows x86-64

djc_core_html_parser-1.0.2-cp39-cp39-win32.whl (135.6 kB view details)

Uploaded CPython 3.9Windows x86

djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.2-cp38-cp38-win_amd64.whl (141.2 kB view details)

Uploaded CPython 3.8Windows x86-64

djc_core_html_parser-1.0.2-cp38-cp38-win32.whl (135.6 kB view details)

Uploaded CPython 3.8Windows x86

djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file djc_core_html_parser-1.0.2.tar.gz.

File metadata

  • Download URL: djc_core_html_parser-1.0.2.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for djc_core_html_parser-1.0.2.tar.gz
Algorithm Hash digest
SHA256 8e98741832b1c0c36348022107d9536c466a952c8f07343f3632165db6f393c2
MD5 afd5390fcf5f0b2ac689651e65b3d9f5
BLAKE2b-256 2afd841abba157450b526f49026703f20f21992075d9f882e878a96177014ade

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 913e6b1432c5b2f81e6233ccbaae85727db599e240b536ee81a674c476704e6e
MD5 722afdf31528a9ae1050437b62a836b0
BLAKE2b-256 78233e64ab25e7d0892645140824f91e5ecd291fcd189d0ced19684cbaaa8158

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b66c867d99678536c3a0cf80fe19ffe02fb8a128d32689869a4a84c0559e5f71
MD5 3ffbd8e742b4a70e930c95ed3a748611
BLAKE2b-256 3a72ec1109f9d35f7dec2ab31dac9739ebe828736dd8c7fd6ac5f53b71abbdab

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb075f604578440bbefcaf68f586065d48acc591889aa5fd4b08eda84c695cfd
MD5 954f385b37c34680d775573628e81224
BLAKE2b-256 68948b33f5c7153dfe11c89a3e74cf1e22bcafc4f483463654fb253f836ec20d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13c58ab35cc90375e6e662b9581ad787e135a123e0f81b5e7c3dbb64ef8f703d
MD5 f205ad82e6d621d6497856ff6e7176c8
BLAKE2b-256 6d753ce19534883ba95394a792ffd2c442a99c6fb193ce805a421e8cc0e40ac0

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb1c5ea485da45b195fdf4533f49b572248bf2dc9782811399da02935c2b6d70
MD5 c22774a8c2d5996f6f81ee8facf1d6d4
BLAKE2b-256 bdf0ff56caefb261f2370307e4fcd97cc82da93b5374b12942cebf0660b97823

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbcd39893c519fa3b76db8e7814665530afdb1704d21e69f98640aa6f434e7c4
MD5 8cf63dd5767dd75057a10e1d9511cd4a
BLAKE2b-256 06657bf2715b2ed97df599a91690e64f3e2ed17a34ef63b9a9f703da6fefc7b4

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e8dc0b09e88ae22bde7ec782f7229ef46c9d2e3008bfd9930f64ef4633e1812
MD5 d25508fc816bb42f8433d6cc9d3e0351
BLAKE2b-256 72470a45fd607a2e1df7b715735bae0d07fb042ddbdee905e2681d83b567b38f

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e855697d056accc673a4fe8315afeb0b8e559df9254a1c7dff75b582cdda0a01
MD5 1c8be4a47c4e2523a50f383f411422bc
BLAKE2b-256 fba2b73315e13101fc9d13d9ba53ad9a668a5f616d972f16f8f97ddb3d6bded7

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa6d6d65a9d5fc61766b27ae9696d2c72ef10b8748c6462c02208421d51beafa
MD5 baa1d905b6b8b1ff9cb0273fb2adc671
BLAKE2b-256 509ec5afe451732ff2d514228e86ca3d7ea9904194144669c4fe9b040729ea1d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 056f086727b1ae3ece508030dbd184b201b516b5c43cdc80abbc34b8ca510dfc
MD5 7c731cf21f9e96af12e80ed76a8e4dfb
BLAKE2b-256 a9d1ad8c343b73309299f93dc96fc8b1729dab7a254fdff851227a3b53b798ed

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5c17397277a11dbd9122e0adcd128faa578965067e5e7b8989e22e86c0ceb3f
MD5 ebed965d5621914da7a25b3c7812a366
BLAKE2b-256 0facd4b35229cf2e21d0e32bc6f2d88fc60f63f0876aade0d84159af95a480c6

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbec56f3e2353c3fa8557d1501c9e136814fe22eb781b046266e560c1a5cf460
MD5 6267703d3fb749087ca94b5be83f10d6
BLAKE2b-256 37cb7259a736be0769ad4abbf2057dd55bafb9e9747b5059c50dc0a838449c90

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6761de2fd4d8c81d54eac2003db27190a58b6ad1dc6b3f046ddbef2fda47da5
MD5 f9ff4091e748aefca1f3b90682c9da5c
BLAKE2b-256 9a796247bdb0d0926e9efc462771605c764e853a7d802be3fde5170bd9f70138

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1902906f6afcefe83a009b454c8eb4b877f1dcc1faea997ff2800d8d5f56edd9
MD5 41eb49476f47d8116f4aec55ef1dc282
BLAKE2b-256 397d3f07df94a9e6068ce11585c4d518124e61b9be8035ed6856cd8024fa4f38

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23a01aa0ac6d0e09527fc8c60b1ba88250448ff8d403ca84b21c11110ef6a850
MD5 4de70353d76f71921c787434350035b2
BLAKE2b-256 1c6ec8ae592793a8f7decda931cd05c1fd207a41697237dfa4056dcbd80465d4

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92cb11f1bc70e9dd0d37b6874240cb13dc58e4f8819139447e0d5a467ed34db5
MD5 a6a2b73643dd7d4b8af22f5df0f9f0a2
BLAKE2b-256 fde71123540a8404d377a5bc2ebe7d862ee76e34ce9d603c4dd6a8ddd7b24919

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0176fac47bee53348d207c021fd2829520fa853b8f1ee5a14642ec8aa1a8f13
MD5 2df2c6dfa7001a6a1d83f2deb2453437
BLAKE2b-256 55abb83986ac971c10950594a5187b1d0da04cb49b7f7207a79376863daf4ce6

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69ff725c88b695bb4a8f5a53d9c667c8bdb25353b251659ed9f1532317af80cd
MD5 aa2026f2d2b7f2b3ebbf8bb49b024e35
BLAKE2b-256 bb47ee6970b557d0b406e509c25ecaaf13666528f706226eaafcc08908c3fe8a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 965d3930aec7036ffa6455580cae4ad2ce8d032d42a023b22721fe50b3cf2b68
MD5 b1df8e4f1ae63abeaf665f5b23387028
BLAKE2b-256 a33a877c84d8f7f5a397d2b0e402cde758d14cf5fb104393c43df7c349c7b3c1

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2be1a905b69a43036b200bf27f4c7b05c55ebeac06386b7528d582760adf02af
MD5 fd06777f3832efb7cff87c4cc6f05a0f
BLAKE2b-256 30b00673faf1124502c37d6888fc0f6cc2651a54795d3360842e9074585b21ec

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63c05eff681f66f3f7fd98f0ee032901fa6eedfd1f09c198c73753efbcdbfb67
MD5 5d251aa43fbc0debb83a2bbc97f3fe43
BLAKE2b-256 c8be3c67c24a733579d597cc77424c2ccc2742005c818bb0e37a8b8ed13604ca

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3f16d05e2d7dead02d9a38397310ba7122f8cf83e4fae60da9d1c908f7fbc14
MD5 49f0a6edfff7f43fa150c9dba70d39b7
BLAKE2b-256 6d502fbee0fec58250060ec156aba59d96721ef2a6d0fc91492a7234ec29e86d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e9a83b22cf51faa93e3d9465510daed536c7bd4cd305ab8260b88cfcb2dcd97
MD5 1527bfae6a9361aca4de5d84224bf3ae
BLAKE2b-256 73372c35fe7e9b6a3c2e57e1c9dc1c8539166fdac195e443c2f960c6e6740c45

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5de4a7ddbffba06b5a1241e37edc6cdef8b4257269b993f10ab1ca068ff99533
MD5 8e1c5a9efefe7bb55b9f172e229df7bf
BLAKE2b-256 4760ce1e6744034fe0af9d3a775befc9d3e2a64bf09b61b32d0e3554cd20ece2

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fae4fac07a167e3ea8b6cd6fe8e211cfc8eb104e9b09bd1cc5a6bc7208a18a33
MD5 361ef055af89aab63dc43a8b65c6868d
BLAKE2b-256 f4a9f7b3fd8dc4e79ef57fd66b2882474712018a391e5904753dc48b4cda88f6

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 089332400a8a3a5dbd97c18330fade47c7ca54ce14f0fd4b4b7d9cc71597c7ea
MD5 8fc2f6d02d5bf1808b169e92aab10b3f
BLAKE2b-256 07ece1e0ba03699cb23b202331f174e9f312b2741ba2016a6ecddbd354365aa4

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14885a94f50504f67b3d511e35973b43447e4a730671ac40242cf67152bf0371
MD5 79feecdd8a5738f14d786bf8a195d80c
BLAKE2b-256 108788cb70d73405a6d98c190033f0f03c209500af7b37eeac82633077ecca32

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e70931b3e37e4c6d1177ccc3cab00fd210fe2bebea53dfef6aebc691553016e
MD5 f494ead5186f8bcfd2e3bcea5d431967
BLAKE2b-256 5cee99b10e7ed95b9a63bed482b2b013f9bad504d8955620c4dd3979b524e18d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b02d02401e8a3a012d137b5e6e647a11b74391fae4fb5eaaffc0b4a4b058c9c4
MD5 b6cdb0587cdc1711d9cdae982044549d
BLAKE2b-256 5f4a93e7c98ddcb2906bde6b467e7d2745b165c0a7dbac9a560484263b67d7f2

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 080b96bc781956ce801def473a4bcfce5d0dd4cc25757661f5897f36542ee09a
MD5 276a232f8dfb6b85c99bbd35d72801c6
BLAKE2b-256 bbe0e14027a9f513fd0b85c19e957adaf9211face197685c02834e980b2745c9

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06f7e01cdfe682d336e65327bb775d4b6639cb14f1ba6151f0dc72ef38993586
MD5 46f75f8118f6234e3efb04b27efc38ab
BLAKE2b-256 36059f630946aa82a54157334694fcf819f35aac0b3e920f259b9b6006915311

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4402e31093ce7de7e964ae3ca705971e7a9c587909baeec9fff8fa68f8acea8
MD5 eb073907fcd8f142e3aa185bf55b7ed8
BLAKE2b-256 e7febd1b9c37f7f50400c4181ab20ab9f4cfb300b517f007b04353c493ab9a73

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48e54cf402127c8f05102cfd283b118521ff124597943bfad6c04e3d4e6d9bca
MD5 b781b6f8d8adc11133ea8f2f5f147cd7
BLAKE2b-256 7355b80427f43e84551f827c6620f9c3620208efe477f74619c45371b6f8a441

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a82433417193f6c4e0531c647c0dbd9c8111afa7a9177361b14e8ba5af712302
MD5 7e4bc77853bf7f6749524b3d1f484762
BLAKE2b-256 f11a2046369fd2c3509a0abe46c98b79d571e4c6514559bb8593d1099ef1df99

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 327318fb0f9973ac5e25605c7184d58f4c06c2e5d16f070e3a8bdf30911e3aa8
MD5 72c0ff5c98cc74253a79c8c402bcd98e
BLAKE2b-256 43cd95495c5525c99d24b97d23c1aebbd0dc636e60130fda90bb53589ad2ae2e

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba3f8e617372ae42afffe780b4373b545d784f56706e60d8b449def2bc794973
MD5 550472d739933f678eea8e2a007336ad
BLAKE2b-256 af912793b73399415f12d7bdae9a9abebb4f0b282faccaa187f87a54f3ec67db

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c1091c414b662b3f8dd448153c2a69b735c53fca9e64c1b7cc9750a103297ae2
MD5 7791c2e390b6772950a914d7b4c30b74
BLAKE2b-256 c837c73e2453b1eae724c9c81a2c8d5dfbdbb516c0820eb51509438285f233e1

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4d448ae5f64019af11cb92bd8e551fee75965e9d01822e8d392077e92036edea
MD5 cf6c57985441bc834fa7887d8ca7774c
BLAKE2b-256 4d92d64b7bce2281ec90b1f7b5ca34599c2ab8795a441379f67f91e53fa02079

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caa2651dbf3600d01685adb4f71520edfc0aba7ce7833608f332a2901d366d51
MD5 09896bd8e869c570fc6410711bcf2603
BLAKE2b-256 4bb7eb53898f72dd05be0e78d5d50cd60426b56c8d1dc3eb574051cedd1603e9

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d0aa795126db1c495120076cb972fc8d6fbc63295d0011512e235cfaf5e4a78
MD5 2347b94c3fbddf119f23c8c017914f56
BLAKE2b-256 6fc2cfaf41a278b8485179d8ceed5cd8d2527294ec33cec7fd5c31257643410c

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23d834e4a91c3c96ba503bbf49bfd49b29f1f8f7437353cdeb5ec5988cc0562f
MD5 1cb21c0b7f4a6c90aa0d3be430ae3f8c
BLAKE2b-256 bbab090840898696ef388531d200bb6d08b72607f5d232c4d18c65d17651cb54

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b296121c15e373c2569229907fb4f56ab01b184797215b2ad1bede2051900b08
MD5 666f8eb0fa9be67910fb65e24bb578d9
BLAKE2b-256 b13f0048ddd81670ec5fd95a01f77cec20867e7572f009d4163b44cefd5f1017

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039c01b06f8ba01845ffdc09b21a5ee998141ff9b673c8b6fa6570e7531a8f10
MD5 21fae4c05007b3f7c42dfbf30dddcb83
BLAKE2b-256 de52631e7f4f45a73646133d0faa7a27c3233c59cd7429450c4cc5385ee7445d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5d8383126709abfad1ace658a8aefa72f9e56d77b1818929adad9066ac91594
MD5 3b2a2b9d6b9402804ff8929851d3998f
BLAKE2b-256 7c51af3b44e27923d771c732bc28385417c962286d7f6ed855e31a3efcced408

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93e99c4b3007d4bfa5dc239a7693e9c6edce5605436fd7dab612758a187c0020
MD5 31fd018d5e48a3acd2c2be2ceec5a82a
BLAKE2b-256 c32e52deb6216ff1f5d398f01ef674fe6a61353ae86453f54ac7b291ed67054e

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a970c25f38f0cf59a2a6595b8a6834a514d5edee26e80170c65ca4a8ae41f0b
MD5 c5eedbf57d56e99dd0f9a95a5cd9e5ec
BLAKE2b-256 80728c1788f9299fbba77d1dfad28201abc5af51fb1fe87248e0dd4c66c78317

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b33636e8ed5615b4b7500428b69a30a3857ca050be7d350fbc57c8a025021b7
MD5 568a1b07bb9aee303f42713ff16d951d
BLAKE2b-256 cf18626061b9e6517e075d0139edf12fd6de024c08d4beb830452ab26d683555

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb9f839b226183214becad4355e3d5281ae78b4c5517fa77a552cd29cdbddc63
MD5 153fd808bccdd5e4f9769417a4b08eac
BLAKE2b-256 631ea69631bc755683f636bc56de842241d5af064df2b8741983922a4381fecc

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 803c73f99ff644ab9961755b80143c4edeaa6ee88fc0faa0d887dadf3a26ad35
MD5 a94c50a394384c9392f1b3b439d42f47
BLAKE2b-256 6ce10bcc622ff7302a8ca7bcf4b2470a8a0d077511c0156a420ce7af08923cc0

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7afb8054d4d6e14fe3965c3f45d2553bebd83fb8b38d1c7006aebd7af22b3653
MD5 740734c2b0360bd8c1f7af6403861b0d
BLAKE2b-256 3109ba1f4b718acb9e309ac1affc24f4a8c05c7e7d3d6cb4ae468b7e4eaec7ce

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c1d80854de1e419fef6474eee7018a5969ca6ed57cbcf1e8c909d387cf69654
MD5 21f8caaddf97bd237dd56aa2a1470f67
BLAKE2b-256 33375a2063aa64ab6e31e75edf8454d2673324f24466f2022f34bd0e32721fc3

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c3add44f133c92db99e911a043c303991b3ee2e6fe562e66fef4109d7b8c49b
MD5 190ff3b6a5cfec8eac25361fa42ef3cb
BLAKE2b-256 389486b5f1f1eec3614675e88710acdb0f9408b464ca073408bde50e8efa026f

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d2fd9839321f645b6a7a27c1ac1ffab9a39d8262f6a2fa8570a12a27fe110f2
MD5 5afc2852a6479831d6790ddc49bea410
BLAKE2b-256 38694c87d0b244b6017a47ff3e18791fc5811505d0cb9f930d93788144b88756

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13faa923b650189a62311bd083181656fc90c3326af47a95ba532b0831db7971
MD5 e8ac174f542a58ee7aab67ae56fde6dc
BLAKE2b-256 572dc3d45e379ad2a8dcb26a11f9ee98a9a3146ee06b2504fdb80f8f248fdbdc

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf31a0aa1449d7b5031e9f325225fba135899478b65cb49342c8260457aec4c4
MD5 bd5e892b96d21fd17c05f1935a0a1f23
BLAKE2b-256 3e1a8e26353daef325d5f9e8a14874467d4229f7144f021fc8d81c17cc4469e3

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84b47cdcb695b0dbcef36f3dc67ff5b8c4bd8a9c4f9d70caf175fce8a4101787
MD5 9adec0a758f7e2195d576bb37f77333c
BLAKE2b-256 157c81f91e9e0e76759f2be8ba8907b089b18790a4fd588427553ce35af0782b

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e111631f773ce128854cc01ad197b555f2ffef1eb46ab46c1377df65e8fc59b2
MD5 6a7518816609b3fa77238a8bd557c7aa
BLAKE2b-256 86774680db49fd441012cabe5def3135dadffe512cb731d0e90587b71f564461

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e803b4e2c6d54a806c37b8eb93c0e4ef2ffca183b8ec5c20ccb4bfd162ff5161
MD5 babb1da4bad9cf9e2c7c91f5d7fc8058
BLAKE2b-256 23c50e42b1aa8c605c4ab5d1a36da92b1b494fb6ab4a49c8433d2881b461345c

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ad02194a500a72a4715403796e51e7b31bbe36ed2e15260467e51a4378013ed
MD5 902ee247eb1b55836f80a984e9c43b00
BLAKE2b-256 aabd8dd766a981d692dbbb68360973e00d4a0233369398d692da95cdcd17df6e

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf9003ec550616b2d8721f00c4c27c1c5d30500ba9f308f5e91a37525443b09b
MD5 efa6d4db064530dfff80bd46afa298d4
BLAKE2b-256 2ff7d90e6cc9ff249ad1c1cac7b7ef8da1bbf787dde91dc752e95f7021c9cb4a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f89a736c221ded75d94ca12258fb5447429bc0376abcf33e940b81a7a5392776
MD5 260d6f2a1c2df0ba4d56aa76bd46f8f4
BLAKE2b-256 b6fc08ce09f4e25e47b2bc919a6b510588a83eadcd99ba184c39ce0c2572fa42

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0778e4c43636882a070ab2955e9374cd152beebac75b91f9c2e5afbc474532c3
MD5 8e0ec2710ae15aa2adeed53d4211ec87
BLAKE2b-256 be5e4f68ad7c35100203b2a39bcdc52a78047c5ebe4572e5cef869a2df1faf91

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72af514de25754c6c0707217251bed43cbbd2727c5e1c30951778e8834917c96
MD5 d4500e4c927fba58f39e376b9049edee
BLAKE2b-256 0d38f3e518c3d4c751c99241113c15d85422c3c1237d063eca9bebb466c4d187

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a6588f6f3ac7f825ebd70ed0fd348ffcbb71b67a6b97a9f0918abc951c026b1
MD5 4fdcd79d65c42aa6c8d2fb1cfee957da
BLAKE2b-256 c999b4782dbcefede2368924939efe7ed807607528142975cc7931ab2bd880c1

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a236956854c6bfe68754e11cbec6e46b2c47dc7df1246121499e96c54998dcd5
MD5 a9223b1a3a21d01594beefc69f614035
BLAKE2b-256 b307c63481030af317dd173b62deccd1a2419f282595239c555dfa56c3e1332b

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fd144013a4fd6f90035cf97c018168cac23a3b50c79fe46545cdd24527ffa47e
MD5 15700c094211819bb53d7c06340e2744
BLAKE2b-256 4ccdbcc285d877fb2221d9f27df160d84d6b51b0074d2d17f9f9eba7c0b5f590

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82c19e6e545b264045ad0c5367eceb9c7c3391ca7b9537077321e8408b1fb9eb
MD5 0d26de4f39bdb73a9c9e0ab90edf79e5
BLAKE2b-256 003651c375c0a14a13c76f965622122803ca0a66f5bb6a59305ca2131362ad6b

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fb2b2ebfdb5e3bcf9bf0a1c6de437478e690f20bfb31941b9cf986b8bda8e9d
MD5 7e6c7ff8bf34c0905db543b46823ea7c
BLAKE2b-256 ef1ef13744059f1b723a0a98e663b8b573f126f33b0f84be5f0459b8b2d2c805

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80feb080242bebad4de0b67fb5c4d113e0ea0a7022b02b1d61f8f3faa0f742c0
MD5 84e89ed9a94cba8e82f7fa261d69d593
BLAKE2b-256 1b22c7b37d7fbf2307f3694d4f8c347875a7a5757f401b0cf17780b299f4d5db

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83cd6559980ddc55d2ef12a948ff97606ee81cb4e316bb6bbcf04cf782fca52e
MD5 c574a3863d805ac9655400e9b1ac08d5
BLAKE2b-256 3f2108a1a7c08684d1158b1d58d770c2c1aa32a12af9377ab8e1753cd39c7014

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dec77d10575846878b05d157d61d4024e8389079f8a672ce062ab4e7ced8f64
MD5 416f1dd4d4bddb394950032a4969e675
BLAKE2b-256 6ec1b3088410c4cea84d249226a5213d223651b7059a9f090b4008cde0b7d95f

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 908793ec6966a0dcd092b20e0b9d1ed4693e3f9d3085e78c3ba74ecf01baaa47
MD5 5e7f14b3eba4de7bacd791303dcb2de9
BLAKE2b-256 0342ef7d97b474570515d1d892265ff06bc51a4c1735541a6099084c2e313843

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f1f01417f53260a024a7c444f053ce18423be7190e71fc0f3e876029ba1f5e8
MD5 6ddce7a11e84c7acbe5f42b772c38c6c
BLAKE2b-256 f1c7f0ac30dd7fb901ae3ae4c570f236a6846614208ecd0fb801c046756d0d8a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f843fba5a9e99977122aa18e1957f60e9295f6b452c2af0706f821b8b16d52ca
MD5 723c06024cc1e34d4e7014e256394f30
BLAKE2b-256 a8aea8025b27ee544736552aa996dd7ce3b3c211717af6abe1688d25a1ef3286

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1048ca511eef11cf738f3786bee1e161a089bfacc32ed6e3305e90216d6d734
MD5 78e11d4e8ba4a7cf30a7ec2970ada405
BLAKE2b-256 477bff7e7d34aae76b0f875e222ea7c99c41db108317d4409465a97d9f012b87

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6777784e58f13a3762ecf80397757cb60bea9515d98984b37921d804bace6252
MD5 176a2613d18508ca6e26d11940c67bfb
BLAKE2b-256 b9ba4903f6e30b3f17454c354fe71244ae38b111e4de3e33b572ae3ed3ede755

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70e28f3071bd6bdd8a4c07696b733e70bc63a8574b28b36e6d5e3f4617590b4f
MD5 43d203422eb1e84ca7ef33aad0e66873
BLAKE2b-256 127bdc8f159a9733022a10c1279e46351028dd52d58edf7ac0acb6140a643d02

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0024117a0767f80f64bb4cf54558a176a97c7a7a34cc85d623e77f851164a630
MD5 2a0b95658136c580f017a68b57b679fe
BLAKE2b-256 d61a04b2acf638858f458cbf66839084a3798b1e94b2ef02635f0f1a06b9e596

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8931e9478184effbc3655eb0a3eb7c9d2cb70f7f4230f5fbfba7db7ceca7514d
MD5 480dfbcb76d41b15aff469a01be7e14d
BLAKE2b-256 8a2e0412e513cb56a5d23aadcfb1ebc73f6f7826f4b8b5941af9849a10d26587

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e557881cee7ecad891bd18108d8dabb1076e7012f87752638542039710f5d0e
MD5 be914b8e67bc46a0cb9833eb52b7b694
BLAKE2b-256 ca1d3483999714c8c51e98d67ee0429d2f186d2eb7b692679b817368e0b0e4f3

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31b0a873059e077ff75d65e30cf04fd34377f8b8d5678b312eeeec5724662693
MD5 242b1fed86c20ccbb9612bfe1821d5a9
BLAKE2b-256 1e46899fd494a43fee59f150cd7ae92958c5de6da77d6b7fcde8b8147ecb4805

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a058d6c0b16c35299e2b4a9d462da2e4775a66dc3171e9ac520c0d57efec7f86
MD5 06c03a65ba277e3f7f7159ede0b748de
BLAKE2b-256 ac8485d35c2a689caa2eff530e5898ff4ba8d77630e9362690db9a15bf00435f

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd9991a7122be8b211460d06b2ba1f9f10e9a69191631d2cfcdc3dac18908f62
MD5 1e96d90d62cb5f43f85ece985f3c4737
BLAKE2b-256 d8ea37d3ee3e33ee554b5858a381220f3cdc64d7070c0cdf2df9de4a6eb65666

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00f096b0a3dd28d6cbddf6ca5f48c3a00a47408b87b5eb9b8145c7843fceb1a8
MD5 f998c0eac384be4479059b7dff87d3f9
BLAKE2b-256 59e778d2259ede30e373c5515b78a7788786b5c88ed17fe0f66648cf73194305

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e70096612b3e99e06a813888b6c06443b3e99b1058b1511b0c4ad284bb5bf5e
MD5 949482f23cab04fa33c7f7d83deef569
BLAKE2b-256 868ae721bc87363b1cf90e713062c7ab45acf3b8998001dc52dd527cbb7621cc

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e7fa4856b76788006b4729abb790b1cf623d8f18d50d1ac62c5d01a6117d88c
MD5 52a8e4da4ec7b58ac2679cf59ce402b0
BLAKE2b-256 102c60714950e06cef3d261562e521ec9d062e076db10378baa0d2f8db462124

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71248d43155c66c99f1ed0c8c96c6b1425eeab8108ce351ac87f341ff6dc8aa4
MD5 761d4be38ca5c48b35fcba9c123d965e
BLAKE2b-256 34f30cb7c340f66fec0e2abb83bf10733b162f326b98e071eb3b63323e60e4e4

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 977f81afa4997b2f49325b7948582af28fd53e12f071e663a7c5f5b22bed667f
MD5 0dcf39da14f7b2efbdc2b424dffde462
BLAKE2b-256 f61c2ca3e41a79f2d1bda01f43a3d2ede2ad4efb185f80fca0a915fc789a5884

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 941e1b8c44727f6c93a51e7ddcd375c1aa29feaebabf54dfe5362d9743b1b1d7
MD5 f3574cc55b59e2acce02655c215863b8
BLAKE2b-256 319ffc3eb874ff2f9be4d7e00b757ae72f3cf177646cfc1dbe5312df624e4e3a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e35443631e2f58545cf145e77ea174a970ba31da298a9014dc05330bc1f25c5a
MD5 62a49a5ccc834fe6c08dac8653c569aa
BLAKE2b-256 ebfc4f4019b58cc11f2e8ba87036dece494c7f824581fb93f9164437c68447eb

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 451855ab1d543502faceade709100fb0d6af5244245a1bd53a08770498049a5d
MD5 079717ce6d8e6cbe450e14f29b363f1f
BLAKE2b-256 aa11b78b55506d6d229d45d4a3a8a8bd698ff67b8d673a53c72342db7b4a37a4

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7c70181f6fea4ccb3da36feda193dde70700082b495e20b223bc7879bbe1a1e
MD5 2e45c19889668ecd6f08bfbc7f02b0ca
BLAKE2b-256 000f43dc289e31ef99535faf5b7a6733d870a182e4ef57fdb5f88ae4f7e8f27a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17178daac1dad31e9958e8096f3e9ca666bd40ef2646cc2e616d71794143ded3
MD5 961ff0d3b9fcd7f9dba9b5fdecab9cda
BLAKE2b-256 65e291f8c4e88ff7b112d833a040e4a4738bb49db80673b76fe991296ec4e71a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a2ecb7495066274af53cd36f0952628d0e460f123e3b29eed1dfb565f618a31
MD5 c6c877389c6a3d27319798d58d9cc52d
BLAKE2b-256 df9be5eb9c9a1a13da4c2e1b6c43703469edc8a08e59ec02108239e4ee97c627

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e27a6618835a52d0efb38d68b081883d763adbb906a8de44d0e048ba5fe58d3
MD5 f1fd96e9bc190dacc1a86dfceb18d843
BLAKE2b-256 d65feff9aa6b746076c70c3e0fa7c17c074ead92089657720187f7386184ff50

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9ad07fb87655d907c50208d530bf82918cf0e6a638117c642f1def9d5e6c490
MD5 e80ff42860c50d4052b0241ba9ffb6c8
BLAKE2b-256 8d7e4fdfdf1b4cca2a9a6e56c2406a9ac12463fe693dc78a812cbf82a308ebc5

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b99467541521f3a293d66bf21d0186d1032eb4a9ea06624814b67abf19d21e
MD5 cbc04fe080f5b6042a7cff913ac2da8b
BLAKE2b-256 90e7929e33890da6101186dd4f4829f85857aea180156e5c84cebc964d6c2324

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f12346a2bdb7d18ccef375021c09e4343578676964fc7506c0758756f5c7bba8
MD5 fbd2c63ee960f77117c50a552c653452
BLAKE2b-256 f0143d695a873b614a49c5108d1ad496b4212818f2ec408a9ef0ad73e66d59a1

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 559b3f1aa0e084bd3256d6fde55365987db80da3328e0e2d987ce2f0c4ff0a08
MD5 de15a7f67fcc0f726101474318095253
BLAKE2b-256 7cefaa0183d1a4c5ad767dc436bae56b77cfe5f40b3b6e5210e0c4123fb77bce

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48cf223a7b072ba351fe07a35dad419bdb27faef5442fdcee94186dc0909773d
MD5 6b81d3ff03dda43f7548a2d6321b5240
BLAKE2b-256 5c88326c95363c9f893753cf5e1191d0aa0362244eb71b22bc8418228f0092ea

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 144301d55083a73b6a477daa022a00a718e6cf43da64ea3213a80d482cbcac9a
MD5 03e2967b03d12e761685e19516a727ab
BLAKE2b-256 0946960c1be67c4c6090a0ab9dc46ce4b53f18a660a63a556ffea1353d26150e

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf913869b83091affc3cf5b2f7d0aa4ddb94ceb3430361ad80e7315283dd3643
MD5 9f15787a7021c87b996a0623afeb3a2a
BLAKE2b-256 b794ee9147ea36985105a2484b829358c7223b6afe118ff9464981f146bb3ef5

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 17b00e607adcda2b3484163ff7a946b1f0e3e31b332371b490ba744e287bf230
MD5 ab091f1fbbd43d42f6cfa42abcca8e56
BLAKE2b-256 07d35b998068079168679d6f94facc39a71414403d3948d839fe86e176409eab

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d40502307f152fe5bdbf84a22cf21812400eeb7a326bd3f3b8d9b6d6137b393b
MD5 347482f2ec21cceb2cd77c6b7e08e57f
BLAKE2b-256 8ffe78dea4c310e8237bfe4e5eb8551de9860bfee8adbe03a07e3a0ed495602a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eea365c45d74eaef2150c7062e08c80dbeb7dae8dffc57a3197a04c3107845c9
MD5 918f77ee3c2f6ca6fc65959f74e55259
BLAKE2b-256 1d3b81119b4bb958221630ae7bcd3125202e568d1cd2c8539ce22a6728bf7e89

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9d449efccac6d6ab2148015f701e0373b799e689c1de8a15729971c492df0b9
MD5 96fcc67ad3016b56b5d49a64452fdb73
BLAKE2b-256 99c3ac5b0dbd15f579b24a9531f5050b3b27c2e62f202d66b2b18d5458a4e8a2

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae5d377ae081bcd2fa5ec0aba704dcbf488c44110d44f179b1e381996a35f42d
MD5 d46bb152008b2070fd81735e407ab077
BLAKE2b-256 d5336b96bbc22b8fe8eb6c1221448df9630aadce3e900a87849b9c4f319bfeb8

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6689f1459190378786f0862a1276409944cd228039071ccdc585f63c6e309962
MD5 9574c3a7d4c6488838a852e7f08fafe0
BLAKE2b-256 50c98983e1cdbb249a14da39e92db124ac955f3d2e22030c5e32753aa06a5d95

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4fe51a69fb3493c5214e14a29eb9802f2f52e83e46c96ebcefc1f9f3c15904e
MD5 4fc2c2c304c7715f4739d9d254c87082
BLAKE2b-256 86fe40c3deec8c6b7f8655a018b71d47eeeab246ab9a7426353edb1e6b499f88

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b7b777a9d2479c3d8a9698886556cac682ea94d4ddbb3d3dce3471e1fdb9966
MD5 8c38fa8ca9c58be64a18b167a508edb5
BLAKE2b-256 a6a5165646c07383a46de84748b87f5bde1aeaf24d729f1cdfa48e2fbaf8fb39

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cef15121305d41297c4b8d6ff476ce19abee64898d4e6846a6ffc65d7f1b635c
MD5 8d4837210ad902bda66b35de525dc815
BLAKE2b-256 659a2a1deb11274eee08848c6722a906ebe0750323aedbb9c10dabc4d3fabce7

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0b5cab616f63ed766ba4b9ac3685ecde57de22aa0afe8a1a077fed9ce7496fa
MD5 ae3a8444d2ab8ff0202ecad10c16356a
BLAKE2b-256 489fa976e10e73d0f2cfcf639fa0b3a7a52ee53ec541f2a9f32916a27e108b5f

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f608929d174f542a9bfa6eedb1f1a5c740344f47000dd4e18926ae6ae277051
MD5 bd75b85ada86f1ad1508d03ccdbadcfe
BLAKE2b-256 8209fade3b967a1a5bf990572b2a8f87ad036115f64bf7a85b089651df8fa785

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32b8198febd9051de438115a201cbf7c5ffcc24f7022ac9fcd7076700f6efd96
MD5 e6327eb1fb4bda679963b7a23b738e67
BLAKE2b-256 f5e42608d3402141ea69e2f2af16951b30266a6fc1539e90b2947fb3757981bf

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