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.0.tar.gz (16.7 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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (237.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core_html_parser-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl (246.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djc_core_html_parser-1.0.0-cp312-cp312-win_amd64.whl (137.5 kB view details)

Uploaded CPython 3.12Windows x86-64

djc_core_html_parser-1.0.0-cp312-cp312-win32.whl (131.3 kB view details)

Uploaded CPython 3.12Windows x86

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (237.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core_html_parser-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (246.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djc_core_html_parser-1.0.0-cp311-cp311-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.11Windows x86-64

djc_core_html_parser-1.0.0-cp311-cp311-win32.whl (131.0 kB view details)

Uploaded CPython 3.11Windows x86

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (238.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core_html_parser-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (246.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djc_core_html_parser-1.0.0-cp310-cp310-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.10Windows x86-64

djc_core_html_parser-1.0.0-cp310-cp310-win32.whl (131.0 kB view details)

Uploaded CPython 3.10Windows x86

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-cp39-cp39-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.9Windows x86-64

djc_core_html_parser-1.0.0-cp39-cp39-win32.whl (131.0 kB view details)

Uploaded CPython 3.9Windows x86

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-cp38-cp38-win_amd64.whl (137.2 kB view details)

Uploaded CPython 3.8Windows x86-64

djc_core_html_parser-1.0.0-cp38-cp38-win32.whl (130.9 kB view details)

Uploaded CPython 3.8Windows x86

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for djc_core_html_parser-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0abae3ff8ef1a0af6a623d239c24d5742eda4c8d0de54b976661d4ad9f01f317
MD5 0594fa7c512061cd65aab443e9e6c029
BLAKE2b-256 cb19f2ba8d35dba477b2033eb1e3120bf2930a9351575b693badd4a7c5174fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37986d73376b87d1e7be195ee495828ef34eaa92a9d4b07f1bb2562a01ba2ecf
MD5 c5711a65cec834c9652e2467876566f7
BLAKE2b-256 2ea2e17a9526630beedf57885a65701879cd5a2613fd127ca1d75ed8a4b3c1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2cfa423459d3f6cf77c7e8100b33c27abd3931af3027173fc8f078ee0c9dd7c5
MD5 be182c2b8ac58553b155cf2bba47a608
BLAKE2b-256 086ba014106661a6e0f684711e5682d8a5807b77aeae15ed2dfbbbbf27c098c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e11025a70567c1f477906ab234de14d103aa0f3ff44da3e7409f93f0c903daf
MD5 5c97ef14fd9bec7ae365e4643b3642ac
BLAKE2b-256 fc25bce949504e919cbf6ab60b046fe5e4d50e7def178bc393b1afde6b79a30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42dde70603f4a5dddcd6789fe65704f18405ec1ba1ea6daab9bd8418cb31dc7a
MD5 6b4dc431023e5a1fb8c9458903560244
BLAKE2b-256 94a078bcbd9e2e328dd9b0ce4284721a8443a06f2ef775c10a1cfce5ff67acdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 749e9169896bd56abc3e17ba44d3225b9c2eaf29a43cdf8abed96fb31d930426
MD5 f1996cba8d5b6f882cb774762e2553bd
BLAKE2b-256 fc8a64050b617e0c5a0918a0c73de2e66933fbe65097bf8327572353911c7eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc7dd5763b08758e193e1cfb87190f6d365fb28befebc0a22a38ce36c6816cd9
MD5 14fac2a261f11af745548fa384e57613
BLAKE2b-256 80cd0624cfce6c7c788a82f5708f79aa0b24e94942c1c0d4ef06b9b95dcd5718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 118402643a0cd5a84fb2bbabe201a9e2b33670e469c1bb5af76a3e945346f5fb
MD5 3ae89bd1820e791054bc2ff3682ee37a
BLAKE2b-256 f8bd1352125cbef9fbaee120cde0074422594e044b780f08ff326563807d9c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c50c6b050e9fb9debb108319789b59360c720de34424081ed3a009dcaf4eb4a4
MD5 26348d0d0a8a312e3011561ec6496fb2
BLAKE2b-256 ca3aff0c27faed6d387aaa6d5dc787e093f3724ca627276098b37eccd9a4b5e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8345b6185efd52a9c1fa3afcc699fbd4c98d329c0a05ce117ab6bb8806b57f04
MD5 62d16078318f44f26b4b53c4da215e46
BLAKE2b-256 e379f841d167e54fba306b097d20be95d3d562d76d7b89e013c404a886e0cc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 10fa7d7828ec58d4629d760825083e24393f3ef65438eb5594612cea9c378917
MD5 4a39b3ae8a0e1a88a28e55a9aec7bfe7
BLAKE2b-256 a06961744b02524c56602b0af6aa183b216d616ef1d860575c57383ec114e635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75eb8d3c8841be3a114b13c3dcac208263f6370ea0d5cf5251455aecc126fb3f
MD5 7345aeb2c97c384879085be51d7ae38b
BLAKE2b-256 41ea6edcfdff9918348cc6a6ac921fffacaabad7b31f8cf32da045b5e7727d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe9a86cd2574043b97cec36dcaec2ca6580d36a811373989ead246f7205138df
MD5 7f7dc83dc13139033c353e4c017c3e04
BLAKE2b-256 c8b13e9f9b8c82111b604a568065ad2dd6bbf88757f0633d6a6489fd6443023a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 adefc44d74ca69c042bfaf0e546f19a555391087fbce4634aade57a89bf80595
MD5 749fc24c5e1f409c4663229adfa1aaa1
BLAKE2b-256 8a1c48e94d160a4f40ee1c367552e499f84318eb1e7c2e5e21eedde2d7e65d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d334afadfd8eaebba3552cd0d75ef4ffdef747f3ea4ff9fa76b3e8841b1bba78
MD5 bcefbcc833fb74e439bfeaf5516df28f
BLAKE2b-256 99b3e37dcb1e191a8f3922cd35b5c6a02fdbfe59bfd210576f01406811b5180b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d19291cc548a85dd916c5d086ee2f7f760c864515540c5f8368307594a5f7ab3
MD5 416472ec5b32753a251ea079fce1ea33
BLAKE2b-256 f2825a8cbeae7b072df199613ebb2fe9bd08343d3b0461f0b853ea8d8258ac73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 856525b4c5fdab03fccdf37c475584fc416eb7dcd8e7b67134aec22c469915dd
MD5 5f2eedac7171bc18940a78ec7ee4a19f
BLAKE2b-256 50ab4311640ba3bf247cd82e08b61e14f7d816c6388e1ed4788102a26027ea7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 832165a6c60304c375c052a0bcb9a5d576bf7ccad385ca39f25d6c543fc94986
MD5 f925bacd8afa65cd97d4e6278ca5536b
BLAKE2b-256 61194047d74a2697b177903c98b29204a72ae2ea7c34e5531ac455f6ae48dab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd13e1454fdcf1d7dcd8aa349e9ea760f525fadb7c307d7c3c3ee0b2e0fa99f
MD5 e515a72d2caafd3943d6ed83f49c1c6f
BLAKE2b-256 d63ad85ecbeb43b78ad5ad681fb9056522cc7616627de4a76c9ed37208b3c567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b393323c3527ec51b211c09bb989444901745121ec9ea60a4d296042aa68762
MD5 1e2ec57fde7d26fc4508da692a86b51c
BLAKE2b-256 dde5b134190db6a9388d9cfb69c6901b9a60772c892a590d8aa1cf1d6acdf271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 243595d0555b059c2755d4198d1b6cbc85262285350ed92719f0a336829f24d4
MD5 b637f57cd74b090140156b6d58110230
BLAKE2b-256 325f540eb6037dc91e90520a7069dc7052a20985634dc1348a9dd0f1a3eec274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b27af7024451d5e3a831708716a124679512a25fb57712711391ea406eba65fb
MD5 6434ad90a4305744e92fa5e17a5a7f89
BLAKE2b-256 34770524a9c1089f519b6eefcb91476ae543e44e46cf9893fcdab933436cadb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4806f92868a978ce08ad45d32bab20346119b5caf9873e34170f8e8c59050f26
MD5 a340ac6928e5da8a6dbbf79cc6c45e76
BLAKE2b-256 e862cc84a25cd552066c3f5cbf533a13c7eff3287f42dfc4a9476d039d66d1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14388eda3a1698155fc9810757510cf5114fb5396503720b3df9a55fa3a3b6a2
MD5 efbdfdf4ff3ae06fd24d01bbee0b1639
BLAKE2b-256 be74a1c7003d34796c98cc5cbff24606b2f541c451801dccefd27f9966249bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0703629db2876b3e32ed5987e4410f873fab7de117e9a4eaa002f5dc95886c0c
MD5 4239ffaf81c4c4d7b8e7ed11aa74263b
BLAKE2b-256 1f890853e02fe80ac180fa2451b1e6a90c3b469865c3fade53f5a8addca9bbf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc771ce6e08fbf8d8d716310fa2bb6f5c29a07d90774e22e5c9eae8376f288d0
MD5 469afcf80c83eb2ad8d7bbeb43f3b9c2
BLAKE2b-256 d65e988c49ae3414b2290ac77f5d8b1d291c3e8a2413c62d7f2a835db16cda69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcdd6b3120e1633691bca783b9849e4dc7e3c7c296dc0bfb31e92b7b09c1eb15
MD5 6327d191376cb5052140814eb36de065
BLAKE2b-256 8a83f9d8b4d95b756f69c1865cd0682fb8b5ea20df00fb9a9ae63299bd487575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e4aef88a6db975487811fa618a3cf3d9b139bd69e8b980e37b196e7eb347358
MD5 60241800ed359544fa9e868be613dc4c
BLAKE2b-256 f15b02b9c57baadfdbfb5318e809707c2abb22de018d4c3b5e9a63c233e4070c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e4a94ca0883562129a0c5d0f49bf7327ccb4d30b5f5aedee485193e19728ab1
MD5 ecc9f2722487bdfda504a17d4e83b40d
BLAKE2b-256 edf9534c8be8f081df4c80cd3007af06d70128fa92ad28eb4253d707bae3f7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70c0facb2aaeacd80ff1e97870deac61ad3644d5bd0c165668733296a76ee9b3
MD5 0e750bb87732f3bf54099a74db93dc12
BLAKE2b-256 4b9c6beb4f92700fc00b2d631e4612af1d1eed981c7c8bd0da7ddfab947e55f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50cf7657cb7a9d2022c2068d43628175485f03577e65d914ef43a14448b616f3
MD5 73cb6d5c08762a3700b15d6b2d55c0e9
BLAKE2b-256 467c09cd103fd2e5cf4661e337b2a15a903e31a6c39c47c4b3903ae49626a7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92c06866bdbe792151c6848a15fa816433a062f0f2db1c4580f75e9ad9d9ad64
MD5 732853383f73760fe10a980922712e55
BLAKE2b-256 18d1a5e17461d239aa08698be23f2054b43ef80a581c5c441d1982843d6efaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 047dc037e80af42c32c505dad110473eaea8683760d07ea5cbf07f447fafbade
MD5 5d71f593ba0ed68ddca7a204d0fa1724
BLAKE2b-256 454e0ae9e9431d3d92fae4b6331cd1885a40d33bafabb73aec3d2cb0fbf6056c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c22d301092acb2156d186af88dfdcbeae2537040769edc0afce89e547c10869
MD5 0998972729960a623dd572bd8864e7c0
BLAKE2b-256 18bec64f805ae61fe41a1780e7c4783014a6311ce7034a97109e3d09708d3b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23c0a2b6cefc8d3162ebf65d81df27411de64f0676f001b606b900e3ecec1c41
MD5 0605a0f0d5494046a14e9024fe14b167
BLAKE2b-256 6495fafd860c4a49a2b746e5bea596fff51ffcac33cc20587b1e92ef74de2b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f848214eef5c13fdf9d5e1ec5fe0ed094cc9828b593f25286531a661ea0af75f
MD5 4539c71cf4a090f0ac5e70e4ee8b2d52
BLAKE2b-256 27bc3139133aaf30f5f1e0c2a7c406328d334754c6e4b3e7d700f2bf0d551f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39859047cf501861faee59dbaec6eccd67f1f2498a121a96ce7e69ef9fe03767
MD5 da701534463a3e234b84824013af50b9
BLAKE2b-256 848ea96361b831c7552776dff809e8af8ead4113580d090cc89ef7a0c8846a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d6e32cee7ea82332ddb242655819c9b0680236221b5a607fe07d712a044d3b0
MD5 83f5d6f15fd65f0e40e8a3a4ef9840ba
BLAKE2b-256 f48ebb076af84a2c8f1c11fddff7aa3f3b345141d537fa68b4c5022474b983be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7ff07ec89bdd5852a6e5934522181100b9b8062dd8afc76d633f5e9dae73b1a
MD5 5e7d888944b6920d2d8ff83f5b274176
BLAKE2b-256 4073f84982461d00cd4e324b474410969283e95c5f98df55e278b551b02002a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 827a35b522f5a19b8e02466d87a65b0b2c234a0267ee400e56ac41f08a250a95
MD5 0b311fdc9a31a88fa5bf3d760a77b989
BLAKE2b-256 41a9fc78468d91434aa8b8bc54c1403006a0e6daa78409919048b889bb78eb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fcfa01a921053a2f03cad6eafaafbd366797e58431d55cd0959cdf56513782d2
MD5 c1b69300a501ebf3365bfdc689147739
BLAKE2b-256 a6047680c7c567031475c6bc0b17ad8e0938a4746ca953859985e5c5dc635059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20569f06186848dbdbc2325fef8bde926b5b2bf467b4f6d4f6bf438490a4524b
MD5 d1600c6c486e70b8eaed8aaa9449ec8c
BLAKE2b-256 1d8d99bf61cc7719ecbbf11194ce1a05f3beae5824fff7546bc818c38f455013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 288beef625035d0c2ca569b15fbbba2c2c15648d7e437e3fa099e10f4563e9a1
MD5 8f41c931c6d538dce1de6de4d7f334a3
BLAKE2b-256 a0246fa6f1645ef8ec01f769ebeda0ea452dcf1bb3159419adf7f40c981a04e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d7e229fc20a3247b8db13703d0e2ca9538907cc5dd9a59ca716454e667a755d
MD5 28c21173b7fcec7a7cc6aa235e4d97c9
BLAKE2b-256 e28214bde1513ef525c7ce569b646c74a9ec303486bb23e43099ca8454862ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7007fa9db8375e440d0035effe7bc6f8b8c55db1e292e03bdcb72ff4a04bb796
MD5 ad1628805860336aab1a2176be528fa3
BLAKE2b-256 e124798ecadbe797dcb608ed25db11cb915cf2039af0ddd5f587d7abbd72443c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e156ebd308b094bdef9d3d687667ceeee661c43221f68f58023719c20ccc912
MD5 82e9c0942f3a437b6973adb789a58433
BLAKE2b-256 d6b4d5092898231f89babe2b2795abf484847658fc3bc23de1c78459af339295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2e0f81228c81b29bfdec6bc86479fb9726c5a4983553668c9a5471f09d70749
MD5 7f1aee22074d276bec33fb6951723fdf
BLAKE2b-256 919d898c3e6ed10ef9a4f7c5f766201a06be565df7c7bd3749c581e12967a2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 190c6c006110b22ecc0feff61417c9c7e6dddfc62da6cbe88b54b2322d5635ef
MD5 a2533511596c44610c41e5efb536d8d0
BLAKE2b-256 10b4e2e41663cf34304949c8367afc76d04b9194dbc68228a6466c23eaaa3288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e766e84ea7cd62aacb5f84a5ef68cd4c838a03d13cfeb7a784ce0affed602a29
MD5 2f3215abeee219598bd191f8e636c564
BLAKE2b-256 e9c8afd0c172b3f5a78a4d292c231b6beaba0ec83fcca2cf39e87cabbdc385f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06f1b8ce8336b074d632868ebbbaa4f61f16c82a0a46158e6d354e8732fc1cad
MD5 e9d42ebee93d55fd6541bc14f4bce992
BLAKE2b-256 e04df1ac249c005dfb8187755aedbe927a92fa7392e854d90699f5b238467612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45270e1dafe2446db5ee18f64d3a4fad7e884758bf530a1cc936d9af2f2a46e1
MD5 b5a7b330a1f728f4a1bafb9d074e8447
BLAKE2b-256 63666fece8f59e647c9e5a9fcbe0cd22a4e774113d9aae158dc813170b015d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a7e5afbfcf40bc55adfc2d8d68cbd4e2d2442e69b3323f8e4a2c72fdad2d9a2
MD5 f08fd52ff40480751351b7bd6b03dcb4
BLAKE2b-256 8d6fd29b6cc4e9b786c2bf36f16694b6ac6f666b15f169ef46ae67bd762dcecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd178ac6438a205dcf1dca6fd7d129992febb1c7b1253ee3f34def2e5c03a9cd
MD5 b70e92fd0761140fe0fb43798b187443
BLAKE2b-256 8bbdb9169a582b7832c2e32f97dd390db16bee947e0689b5d21efee109f4379c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f642465cecb8437909a8c8013d6936fb3263d5b28ef51a1d875c2c407b2cb464
MD5 4f42811ebd1da355fae2914819eb4f8b
BLAKE2b-256 5d1467341b04e1826cdb591b64d280e10fa650ec8d7b4dcc4235e738cf70fc09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca3b3b92de23d0d2e3a44c169995ab20eb2fb7116ed0c09b86eb60c47d92f351
MD5 33552daa66c124593881f9dd0fa7a6a7
BLAKE2b-256 f91fea40001d6f3292a1fb1c6d72ed528ebd84cd9dbbce81ef64290181707419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc3e638a53f0a259aa96f1fa699c4b7753882cb59bf21452a844489d4080903d
MD5 de61da65b6f64761be3e66b8f1d6ab56
BLAKE2b-256 d5c885a2ebf16e97afaced151a20c089e445aca5f4e054f182ba54eb2253b93a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74d33c48c938421b52a547fafd4ec2e51c7d0a4d247f79c7ccbf230d1e82022b
MD5 62b8371c7c60705b5c082bbc772f033d
BLAKE2b-256 1e21c629c0012e633d2eaf8488e6c43ff23480e9bbc8241dbfc1476abdc25e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4867ef1ab0bc6af914b31aacfcfc8e1dbc0dfb687ed1f2c1a14070fad7bbbde1
MD5 63df3ba50048796af6b3dfab3dd7d993
BLAKE2b-256 fa7b795beae8f83e06d65a855d90510653e1e3c881e69fe4325bb866676fd4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95a73d0c1837cf202b817e52530bdc3f8644dcb73389f6826f850be3cddb9c17
MD5 1affe53a2baa201ff3604a237e0fe5f0
BLAKE2b-256 195f5b09416a7eeaf54ad926c19b1570c49e37c0224ef25546c296abb2bdae65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25a0d14f3a3121a0aac1dc2622d5427b72a670dd98748d4e82c5fc2074d42e98
MD5 ca60002d800887721d701e3198435b14
BLAKE2b-256 8d73030a29fa51050586866d662ae4529a65fd3f51638306844e12879a3517a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8429a5f988c949abd318526a6d8135031594abb69ea80adc1b4d6ae7dcc2d482
MD5 1bd684322fad8ff8db122dc035a4ab33
BLAKE2b-256 ff57d33a0c175087ad5c8cb16785b763fdf600428b9b5a048200907eeaf5ea62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9af241a53cda0abe80c3caf691e77ce29d5c3e9a457ff4912a59e3b8cf1517e
MD5 798af0445781c618ad866c8d346f74e4
BLAKE2b-256 14c49322faefb6df32e4da8a2aea6ee6b6fa7660542dfb31ec3c86bb1eaed224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cd311031ad77250890bafa3257a0d2359929695ee91090c5d6503b666e4c4db
MD5 e60ac285d57a650fa8edbbcd73741026
BLAKE2b-256 e21eb71e9dad987a5545361b79bae0b136bc583022dc9974b00e99a3769276d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7146e2adc9eeb7f52b1f97c2260fb5d374cabc369885b13c92190258e453a0e
MD5 d782b5d6eb4aeacd198ea1c893e7f02d
BLAKE2b-256 cb7fe5fa355d0a75ae225f8c6557c1929b56b0595589393cce549990d373f599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c83b4bb3c98af7bd6db96a1cb9f879dfab283895ac4e5dc47d1315f452f69039
MD5 7f7995381de8df85732688633420f147
BLAKE2b-256 3b2ec7434f496bada2fcc082c295de3b29a27e5de75d3173cb9878d5a5200f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af104ef6e7f05d55693697166bbadba008dada969b54f44fad42d9c396ffbdcd
MD5 c12ec7e625d60f91863bbb2ce6147211
BLAKE2b-256 a4ec3d52fc2792fefeeff350de4fb6ce938a9d95b17f9a977ab70707ddd8882e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c7f3c1306fe77fdaa2620bc6abfae9eaf7ddbcf7910444289069f5c91ef5927
MD5 4b62d2a944b7e52bcdaf3fe231a65136
BLAKE2b-256 9b691ae38be17e71263450e829beefb96843aabcdc5f89b336d869d810281c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1cc1be5e7ebc6c6e5f24eff0dc16a909777ada8a496adb50c196167a235cc1b4
MD5 120821217c008f432473cf6d88fd9d85
BLAKE2b-256 40d1273af1adf2f6d6485bf9f140fb5cd94784e876576c0cae08b1b6d476d74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 afec6f59dabd2b5c061b39ca49dee12d850c0a7df16cf564704681c16d164e1c
MD5 4e4fff5e175b84c235b2ca8f5739974e
BLAKE2b-256 be0e8fdbd8108c14f4fd5e05e553ea390c9041d518f27bc82274a1ac44c8610b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c55c9e31e27eeccd69e8f3596d135ca26fba3a60d37143c5f1976937f7bcfd45
MD5 ed65a43aa4483fcfad7f8e3aed0aac95
BLAKE2b-256 aa89aafb0354bbfb372439a1efc4d5299314da2e1823df26c1cf191a455b2d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 231d855d09be6009478f45f922d6f264c7ff3dc313c7f50e4d1a09377e27164e
MD5 78ad32afdc5d94b937dcd9cc709a089f
BLAKE2b-256 54897f83af3453eb02dab7f635c4f0d6a19db490e4d5fd103ee8addc986ea287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 276ab8394276188f4537059685a60c6affcf163807cec403e0021dc07c1353d4
MD5 ad29f889349ab7ff7949c0c7f643b0f4
BLAKE2b-256 74e589a557e93aebca297e2fb8fa65e5f8dc7275ddffd4f8421a27a9e561dd8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9891aac0b52e835aff4e1edee2c12e01036d8ac7924fa3f45552d9bbf3d93098
MD5 32d7c535c88f32d927f922ed69e94e8d
BLAKE2b-256 4a8fc5cc04603a2243b796f0658f91f1560e5f0d58b0c43c5194da543aec810f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5590273d6397171479c58e890cd14a851401355daa6063b3785e2f2ba74a6fe4
MD5 6b05642dd949863a3622b362f6b65b3a
BLAKE2b-256 3d4046407514336b4f86fbd41080abe32226a23f7cab2739836533f17a886f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 367fdd68644e2f3f1fcd30bd248dc3ab01116c4eb6a20cf46b4384569692955d
MD5 015570b4b02dbc80bf3c3f635502fe7b
BLAKE2b-256 26d9df5e35dac3488ad2cf476dee5ae3e2eef8fd21be7088c16ecb6baef87408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8725dbbd4a19278949fd532f77abacee603d86f88893fee37125e4ece26a05e3
MD5 86b57e2e6c3700e1970cde28f593f9d3
BLAKE2b-256 b94b0ba86dbbe21a4bec25ebb79e3f4aca2541b9a4e5b44d56cb71caaa7d6231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b5fc2d087d585d908826a46033f7ab41f69e971ed259c1ed09addd062273209
MD5 e1ed479fed2cbe2c9bcacb5ddb039f0a
BLAKE2b-256 f5f56f675722bdac545a268fe9fd4b05e54f3936964c0c208a5b110ec964a485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de6a9a9d14792e5d3f89190b63cc183532ce3d9eba9526f5c8d2e8a5efba794d
MD5 d973417f2860302999005382c05386bd
BLAKE2b-256 d7ba90fb94a00cda7baf36c10d7e6a76393c5dcd18a4876cf29278e1aa676612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 716fe8b08556d54f04df659b9762ff547b72cd3d56f95f1b9f973bbb95b08d7c
MD5 48d09dee7453369aaca24f994064b28b
BLAKE2b-256 6a685103075540059ae81c2d28794e116f10c29a4a6d5afa2344ce48c365176a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b8234a24cdf326b5c0c60b9255c3fda9a2b661a2da09dce672cfbacfc0762eca
MD5 82a97f3c690edb7a26f6f69a2cb9ee3b
BLAKE2b-256 0ee722dac43178ea81114eccbfbaf27a1e5deb3604d902d92ab4c345caa358fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 81270eaeb4c287ae194935b6a1efc253b875e0c15da76e91a47d2335066bdba8
MD5 8d34a29deb89357ad653394fc1f059b2
BLAKE2b-256 24a0560178c6460f4fd59b6acb66fb69211bb14b809981d382c3885a6c37b74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3dffffa2d7d2cee105ef5565c0ec5e2344d0c543b0d000c917e186accfe0295
MD5 28206730795888caa8ed7a55c5af009a
BLAKE2b-256 4a412a825928ba697fd60537d3f44ac27c6227f81e6d1341271a979707fb1ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3f978912227e7a43ff2be70dd37f92961e2357d3a32db5b28999d0bdc1e81b6
MD5 68f22b2b58c0df8e385769d132def8dc
BLAKE2b-256 7c5e3a74aaeb79af57a17f73aa3dfdf9a4246eb2c35c5ed72836f08ce09eb757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3c7f8f5b1c19d3f1f434ec3c3e5ee450fe666daf70eda66cb773236f1966bed
MD5 179b38248562f339bc618ba9b2531d9b
BLAKE2b-256 2a7c75c7ad93bc5ece460b84272ef8c27871a06cdf5e2cdbbf9ba0e8442709a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e8237d5c91c769bdfa13a913cb3f337313db9cc0c551f78953fc00f444d2ee1
MD5 a2caa77b0d420de92b3f596086e26b61
BLAKE2b-256 7924bf14c715d3a4de65c678a687746c741a43920078fb3f04e7453e46ef4dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d7111a5d2a063023aade319fa584dd536b46aaab84d7aa03ca3366ae85a263
MD5 84562325856c81be8acc784d398372bc
BLAKE2b-256 c54fe1dca1308c8ec3e638a067898054e94f79019e69f7243b7370ac13e5e87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28d9907ebc72be0f59bb0ef8669f69062950d1472171671c2b16dc01436471d7
MD5 f385d41020e6798eb434c20486fe8b80
BLAKE2b-256 f4975a3558cc1e7c29b6fdf0c8859078663663b1a61a101e4190add5413f1371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f899f35fb417806520e6c8367554ee1f968cf044a24fb6b065ba990eae613d7a
MD5 b69dbd41bf484cd38189efa3839fb223
BLAKE2b-256 c6f21acb4e381db5a57498f945f21ca7d2ef2552c77c18ce705c227c18df8f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 155ab5659d20cf9984591e121c0ccde939b5212636709eb4a43df63516654125
MD5 6311d92d07fe391d7e2c1b4eb7e6e081
BLAKE2b-256 818ac3f10fe36d4d8886c64a5862854735347c0c91e9ceb83fac143528bdd718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebed287d33d8c0e7197cf69ea874dcd9a7be7b33e06a3b275210e3c550e6dcc9
MD5 fc3a273574c33b2f7708950497dac00b
BLAKE2b-256 1dd8355609c8820de4964837171684e0149c31f34f3592615c33aa058b62f15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 86f508641cebca8335220ff94fa7b06dc312cba738a4bca3c220c075ff941537
MD5 37738459d3a549fac51e4ce2acec75de
BLAKE2b-256 a5d4e54dcaa6ff73ffc1e5c8460e6ca04905c6d819e38d97ab3e30c003fef8c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c29068fab0ef2678965d6934b9a5a8e952caf8c0121aa8f494b214abb91871e
MD5 f04066c7e967652fc192a86b96874a55
BLAKE2b-256 5e5481a0a744a9dfaada8c8ba588ec2473edf2514ed21b281fddca8cb9e955b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0fb230d0cb0ae434723a6a566ad427979949118ce16e9b65f1d467f7dfc98e4b
MD5 7b6ed834ad4a5d24f444aea337320df0
BLAKE2b-256 9a72a6fb53de5db61ef68c0a9634194950f002e2982c03e0f1dae03dd31d770b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2022b05597154565246cd0232406c77746f26d02a2d8b45cb9463c35bf0ecdc
MD5 2a7ab494063bbe177e7afad95e5909c7
BLAKE2b-256 71a15390c84f6ab366d4572deb7c122849de7bc4d42754117dde835234203d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11e933bb7104e49a4b7bbbdcf8cb1ae2a6caea71696cc859bc5365f644b4f826
MD5 543a2c6d4ea368ea27a4872dc006744c
BLAKE2b-256 9cce6917836529eee49526143a8e3ba74f7f083f593c2dfb3b9856406710ba0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1106699526b0eae73efb946b06ec08b6952c3bc67a1c40d5b8dc7197c97d3fb
MD5 9aa40b63e1e4a6354f91c2d3e3750eed
BLAKE2b-256 ec25f97050b20f406fcba22298118a9748ed37d460e5cdb658e8291712653d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b03835f632dac69bf782482d757b593e0892ddf2a5648a7f1ba489d92e25250
MD5 d99726463046d39d9abfa6bb738912c8
BLAKE2b-256 573e33b24dfa6473a8030e71f888eacd0d1910875c1b796259bd63ae274962a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68512502092177019b9f414697905faf23c0ade87f38acd03c8ac037b52162fd
MD5 97a5b628b6e347ca797caded2f8405bd
BLAKE2b-256 e6be9018f045713036f9e4265f7546a59a0ab68370c61e0486075e7378b3ca12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7f03a03a85c68e73bca9beca602940543a3229032a5d8141d8f0aeb9b56d8c9
MD5 2f5229e2c8d32eb7940619eb2e8034d2
BLAKE2b-256 6bfc71774e7d45736945298e7fb987a8e856b447484718ca59fc8dff7e3ff714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68a92f06195bd8352d314637701ecbcf5fe0cdb6707ed767a2b43f7d0e02a3b8
MD5 31561815f57ab07f640a58001511afe8
BLAKE2b-256 dee3070c1793dbe3dc3f3f93bcceccf2b27941e5fc9d0038b566603a19c90ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82bf1310bdbdaff7d3aac0e128a8b709e729d83b1cbb6da51a1479d7edc6d54b
MD5 ae6433dbfdcd9d9cb5f4617ef6454ff0
BLAKE2b-256 969321780877360d25eaf0ce0e8cb5dcdd626501bd697720f88d87979122245b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e341b36896563a43ad085e24ccc77fb59c36f69f05f785d5480c1d2f1dcd95e
MD5 732485217abce04e05609999d157b23f
BLAKE2b-256 3b9d97f9b669e8321c1a1938f7592257899f65c2a2d416f96693e43bb7cb0719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 632b5b44add5fbb8ad0193efebeae19fa81d65ba7e02c85d956b25ecff113707
MD5 80fb936738c4e61be8e4e791397b9fed
BLAKE2b-256 4927a7b499b18088e7fbf8cb2e01a49293fd1fb7d90286725b34bb686c5a0518

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