Skip to main content

HTML parser used by django-components written in Rust.

Project description

djc-core-html-parser

PyPI - Version PyPI - Python Version PyPI - License PyPI - Downloads GitHub Actions Workflow Status

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.3.tar.gz (16.9 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.3-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.3-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.3-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.3-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.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.3-cp314-cp314-win_amd64.whl (139.4 kB view details)

Uploaded CPython 3.14Windows x86-64

djc_core_html_parser-1.0.3-cp314-cp314-win32.whl (134.7 kB view details)

Uploaded CPython 3.14Windows x86

djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

djc_core_html_parser-1.0.3-cp314-cp314-macosx_11_0_arm64.whl (240.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djc_core_html_parser-1.0.3-cp314-cp314-macosx_10_12_x86_64.whl (253.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

djc_core_html_parser-1.0.3-cp313-cp313-win_amd64.whl (139.6 kB view details)

Uploaded CPython 3.13Windows x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (241.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core_html_parser-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl (253.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djc_core_html_parser-1.0.3-cp312-cp312-win_amd64.whl (139.9 kB view details)

Uploaded CPython 3.12Windows x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (241.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core_html_parser-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl (253.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (241.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core_html_parser-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl (256.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djc_core_html_parser-1.0.3-cp310-cp310-win_amd64.whl (141.1 kB view details)

Uploaded CPython 3.10Windows x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-win_amd64.whl (141.1 kB view details)

Uploaded CPython 3.9Windows x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

djc_core_html_parser-1.0.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for djc_core_html_parser-1.0.3.tar.gz
Algorithm Hash digest
SHA256 735c556440d029739d82b6f69a4c152a2a352c9355166dd5778cc42e664d715f
MD5 49b2ab968e581802383be20d2ccc4512
BLAKE2b-256 e049d44e902ae54815ba7c54f1437c19fd5897ba361a07653935154a30d5a6d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c2e86c819e6dc49b8c4c81ed4e7a326d877f0aa884e6c6d3e19ce8d292d2dd3
MD5 6fae443063901cf6961e14a9e488b96f
BLAKE2b-256 f2fd1f3ca2777adef393c135c9bd45260147a2ee72328cf4804f69ad392bebd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4de4272aa40a0908d8d027de6ac47c1ea1a48fbd67d95de45062a4e4e584bf89
MD5 7a497a81bee10ed3ae77dbb145ef2cd5
BLAKE2b-256 37649f650b4ffeb72b847f53d6a02910ab6ef59684f0b6158051804ca86a6711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 041076683408a51793f797148086215c9494a55c9fb84e6099649dac482c47f2
MD5 ea23f9212af0de3956454e42dd79425f
BLAKE2b-256 a5ab521bb6a2a40e14b711cc3c7992f51e0ce8bf15e795c6a513640cbab0aed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3d782b2df939670bb8226e04962f614af1f825719484b4e795fb61ce68df484
MD5 993249f628c10fb8d84eacdc7e16ced1
BLAKE2b-256 7f2dafc880edaa43da6be9e066faf23c943526ae1c4ec0a494aa2e05cd28d601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 161cd4600359a8284da595c3e585f4ce47772bfc9024d4d133e2436c7ccfe5a7
MD5 5b41c6268fdf98d08b94dd74fde6b220
BLAKE2b-256 36e093ef93b3aeda3b3b29db579d9ad0886c74343030dcc729641a958d2eab24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3741518b6dd4e41c4b04ffab51933eaeaebaffb4ecd9499bdebffc108372bc78
MD5 b3a31b3f2db9910ee65d49001f6f7d38
BLAKE2b-256 3b95d6a438c1744868a00a8428038a589195679c3e0bd7d0146199b9557cf7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd3118e609a9746359448b22919b541a12b724a0305afb142b92f8a825d2435c
MD5 d6234d658ee7fa14f35259bdf7a6d9b2
BLAKE2b-256 5011d08e54152bbbcaf97d3cf450d9ddb991854935e6f4e2ee8e984b6a143b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62e796d2399ebd0e402f981395dd12eed1ad65aa51fd436475c519075c24c9b6
MD5 9a878a58341826d1ce5263fc036ac4e4
BLAKE2b-256 5d9d3693d89db9b5cf5e0c5bad38c55e157e1fa4a9bb244682754476082cdbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24fc4d5d548575bf4e84df6d3c36bef0fc47e5fc7366bdce6d5360b456c0031c
MD5 285650711ac54adf8e506739f23b7313
BLAKE2b-256 00e920900c91e20c461a4ff05cc70cbad12fd2cbaef6c5373e2c8a99c79a006c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9658e62ff10a2fdd4e860537462aef87b9d339dd2779f21fa3ba1f7385c1af45
MD5 55b0962a0e46ffc40355c35a107bd719
BLAKE2b-256 3a4720d1f558b5bcb15c97611deabaf6d509a1544e9f059f1f61e0ef2dfce352

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6b01b01a6e073780a75d5bba4ae8c5fe60c66025a860c7ca17e9493b6fd18c83
MD5 73e93ec0d7b595034b7c28015075c59a
BLAKE2b-256 b0f6cfaf3bb275bc207135387a4eb39f0d1a198c9127780daf01267925e3e793

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3dabb5e14deb1278396744facaf2186fbbaa0770a569f0f8f2ed79b220d4df43
MD5 f9c569fd22dc31016bea8634453cbce2
BLAKE2b-256 cdb92a0415a5a479d38ce0092bbc29a9177e69dfcc25af88e684b0e785e13d0d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f6578c8b7356bb6eef01a7b335e1cdedc589cabdd504ca473c178ea6866a925
MD5 c834a5d84954acc1fbf58b8222400075
BLAKE2b-256 0d2013964d9d7414d48779a899ca932a53822ecd6daa31a421663d45cd8a870c

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2a0f574c75ac6f92dd9138e0f0464e11e02d7ce9ff136227737c78bf44a04af
MD5 2e71d9c6c8dfaf978567e80b2292239c
BLAKE2b-256 9f5818b0b8d9858778ea2f3891a2f96e580c8d85499bcd4469cf58f4f73888ea

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99d536a8f2c75a8d25b8976f70a0dbb429983c61ff0db40b93c2c25f86ebed1d
MD5 24b498e7aa66d92b313f2f58cc4e863e
BLAKE2b-256 062170914a36ea2953ebd4cc142af4d5362e4d89c7ba76685103e26e8b36e9c6

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc7a451cd93f41670f625fa16cabd4d6fcf139167149a957c1dcf671304ac832
MD5 441c4c8cdba11f4d9991c42ffb95f8eb
BLAKE2b-256 aa5399cf18a29092270fc163961adb345d1239babbb3028a4053f3eecac65d99

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42978d265dc8931c93e5a62d2968108fe4999b236643e516178eecf83cb1f5c7
MD5 6f13a7e562b676c519f2434a5d13bce9
BLAKE2b-256 46bf8e7b9f24831b1783120c40930a71a903c9b7fbe3b2579fac726f33dc6712

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4d7dc89387c97776f2e79c7d4ee60ef271c59ef90675579ca442dde4bf8b2f8
MD5 c57b7422e0ae3d4f87c85eb14cae1a31
BLAKE2b-256 ebca232136d192dc38feac3328de335f70b7103ca7f151c6fdba233447ff8dec

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6f7e17cd71fa03f9f87d161844ca91a4d15c96991af8a0e5a6ec7cbee3e32c7
MD5 1586e92ba5d2c75edc71989ae604c4f6
BLAKE2b-256 558b6461ceccf2c2483e4e30cc0b5f385b06b9d977fb28c5b40f5993e7a3381a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8267af6c9804f63ce6bcb4c9bfdc32685fdbfe71ffb186b796e66ce7880e755
MD5 c9d5fec2e81a12e23b6c80eeff20aa4f
BLAKE2b-256 b27d4d1efe34f95d8dd3a987effb277027b8d7495d1de8206bc993573f426f5a

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dbd87ae6aabfecbb9534091e75e0c6577a794f44da4a04c8b802138999f0b58
MD5 a462f46c4375b7fbfdec6e7452f43196
BLAKE2b-256 3a2600cc2f7a32e9284743d8f5a5bda8a57c9ddae09033f68bb6ccd1dd938d9e

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8898a54528b59433f4a0fc62198da90e02842b7072f549c09c95b0d2b69f95c2
MD5 b91c81a0f960341e5a4a34a08d5d4daa
BLAKE2b-256 69dd06143394f22648fac420133e6df94e737e7fafabd9dbd7e762ec18c822f7

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7328ebabc8c596a7088dcb97ac6d94796978b7cbf6b14713ccf8ae4614aac1cb
MD5 709b639ade6ec3d9dced64d824201804
BLAKE2b-256 80b1cc6720809aeaf813317f0a0febae01c8e933b51001138db110b0847a091d

See more details on using hashes here.

File details

Details for the file djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5524faa9500c3286f4a2722549df48c9b76d47211e4804c79dccd2a553acb3b6
MD5 3fa69742246606f7454a78a50ce29e46
BLAKE2b-256 eaea2897aea3a488240a9bfe49fb10ec9be17487ab138faeedb7ed3e6ad0edf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b66aaafb843a7848ce75ca0cfd025fb1c6e0f658548ee9654d919d695484c83
MD5 dbd96484aaf024e27b874b0481447974
BLAKE2b-256 c904ccacbd6b9b92772f8bea880dcbac1b940da90c0f0499aa28bc14469b24c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8989260e7b5d87d49248b2cc40ca81de960aeaa23e8edadedba535ee796a5c0
MD5 e22337d7cc4f5b227251d1a0b17eeb76
BLAKE2b-256 a61533d796ef2f0f6c837398df89e489cca500556bab672c6a4c666fd572083e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5201233706afc996eacd9e90a1ed4d5a566866aecbb692a54d32028c8e61ed76
MD5 6f1f38da91fb9d10ec72db7967c3b4ae
BLAKE2b-256 261f8f7981f3661962194fef5860d865ccccb3560cecf9b64efc00c96ede7ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8239f507636f3d58dddb2dc6b139c9238ffb922b73e70480aa7828d3b8630731
MD5 e16c995a23db381a314177fbd36588e9
BLAKE2b-256 a0773cb362b6a92e5ceccf59aabd5e7a30cacd26065a08437c472629cb3ef599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01a00fb36f0bc93c192a50b6ce9207abd384be5618e21657bc6ac05f20446fad
MD5 e5d09705c8ec3b2554bb5ad09fd1878f
BLAKE2b-256 f2ee55cd945dc6e70884e05e8b71f7413783c49eeb5cca4de228efdbf0c379df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 467c348009ad4c065ecde94695b7df5fad8684fab05788017af803943ee84699
MD5 46e6210eb71b7b94e3730d1daff03db3
BLAKE2b-256 e0d8e6232d038add5d3b2f7651cd8c881e140e0c28019bfdaf630870c64cd8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a552e76011dfccff1a0bed771fb70b0077c088128ab9786b341ce417623e9258
MD5 98119bdcdea04d5abb2beeb9f9bc678f
BLAKE2b-256 1d516631af42bfb49d49ea2f720ea886df6f8063af877cf5cc9373b894e546d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5fd86fb7fb9379ee9716381882fd0f8cfe022ed136aababcdbe35f37c691f6f
MD5 954ffe4766ea6a215c9351d96bc13f33
BLAKE2b-256 2d6a6608180aef40a16e63da02d982a678543ce0874694cd26a88e2aeada9524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2892382cbb6a0710d1e4a53bcce53d16517ec75f36a8e64afbe4d428c735691d
MD5 604650f961a4de1b60fac831155382cd
BLAKE2b-256 98936213f4ae8df8e4e26d02ebebdf4884206693965d00304cf605f10dae7bb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f45a8221bbf6d20707f39bd35ac1decc9bd80d3c38e3a6ed45bcb81343da9cc
MD5 d9e85c9b5bd25d76156fcbe2a881bb01
BLAKE2b-256 be7b5e95f7292482740658df868af59a3cd810125b49d298305229406e472444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96d09066ab5b2b927bdcfb1f080b8fa8760588ed5bd55b6287a79fdb8e6a5bca
MD5 f4818cabeee025827c7864772e72e130
BLAKE2b-256 c34e19b1a81d49936174ca6608c97e3f7b02b3eca5b9ef32b71dab75e9aca22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 415669c20919832759b7e18dffc79916afd9a6f18b9dabe3c05ff94ffc1994b7
MD5 4fe2c33977d1eccb7af1c918fceb209a
BLAKE2b-256 8dad273e65089737d87b221161231bf4edda73d77cde1bbf5d11c6cfb94f9a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc52483ff89ca8ea138b644f523093a95b0acac728492ae77784964301d84d03
MD5 ff786fa48887e215eb5d090b7320cab8
BLAKE2b-256 1566710a097f7997da588f28e658811204b8d0b9476700ee5888430bce09edf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08009fa58c0149aeea102436da062e6c765526c596113b5e2e5444cb752f0287
MD5 34b73c11968a7697c553985ffe3807e0
BLAKE2b-256 dcb985256a0fff76aa5dbdce1db4d93d3c557cf6abcfa40e4b67799ab020c1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85f5ed6b72a5a4b5d0b3457dbf67f589b1cf7604e27cc7266becf0cdc162a0a3
MD5 cc99335543884e69077b2a2a5802c04e
BLAKE2b-256 5a3a6c7905a61ab46059cc3546b90b6e0a5d0fbd18be3f9f5748d08b27178895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e86b60ec45f67518fde699e74ef16d4375e9b7b4aab0678e86f482718926659a
MD5 952284bf90605358692e7c6d425f3af8
BLAKE2b-256 b01d645c4ca3f09165add9c62db3caa65dcedaa102edb75a27a2321faceea9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a007df44224ab5ca8b02447b8246eeedc8620d7a1336775ebc9d1c39fe31a165
MD5 e8e3782bd78c7688da9c6293fd26cf62
BLAKE2b-256 d76102f7a0602413fb1e6817f8f5fdb576b126d79807215462b69d606006cb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fffbb8435ac37e48674ae7060be44b6ea31e64077d23d3248963f9747fcecde0
MD5 75970cc0a233a03de4ddf399e01f787c
BLAKE2b-256 48abe32380dfcc82ba754270f117f74f6e00d4092737285ec84c8cf28f0f4741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1373c311f462a165da26d2fa8dcb10a2cd47f3fb37e0b9e2b0c57adfe24cc62b
MD5 5f03245b953a15298912d76b369b1855
BLAKE2b-256 dcd87342386429d1ecce1c5aed5f20a5ee83ace1fae858e9008eef6ceec7c249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d20a557ed252c72e8439294fe87afcc12d4d49f50ede5cfcb3c98f56c75142c
MD5 4ccf09e7bdb6010bfc66fd7f76f61be6
BLAKE2b-256 02b479e9ffbbf91a510d839f2515eba36b1c93af6fe93df34d358bc11847bd50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49e9a7284933b0eedf372cdacc7fcac9447e88eb734ae4dce2789ade46178abf
MD5 dbe46b37799c536ddd97f4546b972951
BLAKE2b-256 05779999bca7e8cd2676394ed075951a8549a352fd5b122a809016adac0fe2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6b26c82a49cab60dc52ca6e4cede6a080a604697a2519d11d81708a0d0548e2
MD5 ac23be9fb7b1e32fca4c27a38a493105
BLAKE2b-256 22ed2a4f7fdd76ef121c69403ad65ddc31c61de48941901d4596fc19a7d41dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e2542ccf3e89172d72f2a34b949ce392a681e7ed341e64ec9c4114bae71f0e8
MD5 ffda318562feb616ea59ff81c09c86c9
BLAKE2b-256 14f51d4dde0af7c78a42922574faa6231700a456b375fb43913bb584429dec37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12a4de877df64312f821350c5f64b2736452965cbd14dcd62c4182cf8404e7c1
MD5 c242989ed72381f413fd3f7fc51217e5
BLAKE2b-256 e250bd07381d3cd526924fef52bd5a1f1e996f26faa565b25cdd62f8a4683e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 467d4900ca7432c0f3e22f858d25fe495cad8518793447c017b4efbae7b80aab
MD5 26318cf19d311a88aaf146ca35f0ef66
BLAKE2b-256 49afb045511670afe5178a4822291de641213135d9c0b5ec73e8bd561330c8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ffc9e9a98958467761443f2b92570d03a2899fcc3a6c4d6b0dbe0e09e20e2d9
MD5 e601fe5dc053dfd7691c728c6d56de2a
BLAKE2b-256 618322edb7d54c5e6265b3cec109c10b95026357c33e75be8e3e7ccdc0876e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7270b610145315bd582a094c3753dec55470cfa40da0cef0495ed763466a444
MD5 bc63772f79ec8446b3bdd3dc88a4748d
BLAKE2b-256 6b294fba7e18b240c4b59553842d09e660f0871418099575630e95ceafacd7c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5536e6aa13a462af72d6bd705b598e434e042020c6e758e056360c2d8ce0465
MD5 afc09716f63418b870a929f57f1a6cf1
BLAKE2b-256 9d7c0378184b61e4c813b61533c3850cc56349f2301bda69891682c0c02eb890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22ae19bf21813b4b73d06430f30af8c635f38edeaeedc8743682ddf038e6c6d7
MD5 89c6dcdb36ca92375249884ec764fed3
BLAKE2b-256 2be3939b03e8d1abf8edbba7926a6f3da90bae3b147cf019e09eba97e333bf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e9e01e9fb134404d014d8142e5240bd5f85881e9c1f381c17d9fb8116ce8464
MD5 f4ff9ee3f2a9ac0230317fcf1aa90a1b
BLAKE2b-256 fb75aeb79c8cba0275539c67c64ff8068ee05f1dd842da8bc875cd58f8b45f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79fadc424a67083005ab02a74bb63ddeef8102c2094a11297084654c43d92c2f
MD5 dc4b8ad5492e12775eddd9b7b5f2d3e1
BLAKE2b-256 3c3c07c98ef2407c1334a27ac267653ecd3642b56febb675c60696927cb0321e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad747924d5212cbeffb7af67d8e08567645c6d309e9efba72668898606e0962e
MD5 984b968023b81bbf4bb78949b0a6fd59
BLAKE2b-256 8f02582e6ef438c470a1f8fd0a6dae0b22a68d097d5e1f49543b036ab66dcfa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76aee77a8886510fc4c902b65cd47e46ffa272dee5999aadf97f5fe72e0ba7e5
MD5 89e1a672f2dab4d08467618ae7e3015b
BLAKE2b-256 c6d214b9d51cc4fb831297c675c45dc171e4380232f2f3b4a54f4cd1eaaf59dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f01947e25fa4db8469879e6ab1f423f210a17b9705167a28b289d5f76e6e6bad
MD5 97d57bd4f716a79295fa4ed7dacbd175
BLAKE2b-256 797ed063cb36e39c9c0d3cb9606abb33d40f34bf9091501a2e9e19c1ad9a3541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a2c0f9c9c2535abd6d4c1dfd79f9943efaa9badbfaeee9dbf2c012165958831
MD5 79bc6da19a7dac72c47fc015d4a4ad03
BLAKE2b-256 a32c6cd3371611650e7cb72a3c85063f1962a757ef2f240e7fd67672fa67850e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e09a5817de8e38404dd63b3834fbd095e7cbab7cee5ab30d2daaeea0d5c0fe4e
MD5 6aac616e6f7d0de121ac4e32926fc578
BLAKE2b-256 95aa23e1cd9c07adbb2a79497a73714d3da546e8260b084265db4b231d21f1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08f42ab1458e41c57679c998f1e286b842379aee50477a2dc3a2d45c5cd2fc12
MD5 c6580759ef7ce1d4b394940c0d2d34ec
BLAKE2b-256 906385135cf1106959fde8abf24cb34e05e22abcb1c5ed1633ccbb2a8f9471c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceff184a0dccc9ca0d9cb0a10df7032b4432208793a8d97ebfec8bc35efc6762
MD5 9ca34e2549bd8fbb9555acc53d939fff
BLAKE2b-256 c201a999f8b89aee5ac7f2bac26ec01ecca345a392ef55a4fa42f3a2cf3bca15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63c297e42fb8c82a7d2275773575dee835b789055ff8760885eb24574973cc29
MD5 1911d6416b800c9bd3aa1e87d4b50af2
BLAKE2b-256 5ece0c232f315a670a9bdfc7da187ae1d31faa45991b91c9bb2b0d09e98faea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d65bf9f9c4c814d420c5251d2ab534d1b4e1feca08b90875375278e905d0384c
MD5 7bd749a8d14efc7566546c528158848b
BLAKE2b-256 5dd8caf5283694b876b07f6d182f82d286b0f878996eb1ca56819dd8066d5c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6be3b252e135ac4bf7ac50d3197d9f30ba169c56ee9e43377d5af6055b85a4aa
MD5 64cc562f84dc658a78ead99ce72f4b64
BLAKE2b-256 91ffff2644a731312c44caf9184d4ce155cac01e9e7eded4775f9193ea3999ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42cb432256bdcadaf154b66baa509cc1125f20867dffa25f17eac089d305aeeb
MD5 0b85af9059a6201d78dc3840de0f194b
BLAKE2b-256 22ac77c726fc3808f326163d99908e78b57019a37d17e68f88f9c97721ee17d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03ba578986362d1a0a2feb1045c99eb29694dd3b697eb19af27bef0bf056b8ab
MD5 e6b05b53631cec3c2365f7785161501e
BLAKE2b-256 66e6debfb169b6df0cabca059d79182fa01d828c3dcc3e4a30061c948d13960e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 472cb6182dac0f0a9b011d8b6b82a1e49cbbbceb612b00ddcafe7d5133e7e3b1
MD5 221aac328b296b3ed4b5665af4b55ed0
BLAKE2b-256 057b88ca28387e3ca18c4f06ebc7f1ee1fdd45d66c60563ba532e9cb3e84bd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43f3b3122e7dd614e58eb27f6f29dbdb71d791eb297f186da97a7032a3ea19f7
MD5 1903db753372c73120f5dfefa9f0f278
BLAKE2b-256 30b6300faa13c18af33e77f38b5180755a39470fc0e1a1da32ee5a2f977fed90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1eb5fddf94bef905fc85d7a3e5f0396e4522082655ffa387919e40fcb13f3cbb
MD5 13fcf973a5e42e87f73c4fc98e5fcceb
BLAKE2b-256 3339d357b18b1cb486b297cafcff26cbf661ff739c5b08c6d6b9e3e2d0554095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b5cfdb2fb81dc317a1d347cee0d43527359bfc9f42f6683f32f6399fe27de44
MD5 a220270d2faf2eeed42fbb60cc2afff0
BLAKE2b-256 0fa16b9f16e88213b263f4c2e57a7984c92c12bc0dfa9f5a0d2503eadfff54ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3be97462d49adcee8f764d8b63e14a4f8f709cce9bc874bbadbe5daf69fce62
MD5 c60a01f68f66ebf219ce89b713367e77
BLAKE2b-256 38dcc7aa28c68811872f6561de37425a619913d6b91c4dd7ccdc9902d610683f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2dfa7b8634b41f8fcf1fee89224902ae35a7a3514c9143551b39724061e763a
MD5 0203910ab251fb8ae8fd021705851591
BLAKE2b-256 f24426f71cb121064806d6ddd93e44afdf23bd8e3dada6f1584c10697ef6f7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b24f036488b01f3fc3fac00751f8e10e8a8a642290495b2250f738b512e3daf5
MD5 fb1dcc83fc0cf12740601c47ba454b24
BLAKE2b-256 6a89b4ab158b280a212b94a7e82166ab7975c904058e0db22fb2ca29eea7db99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8359e89014d872c514eace92aa60140d31925947b58b85ba483de7e9fd988f97
MD5 44f186583505f0b2fdb60aba5bc662ff
BLAKE2b-256 df5989de52caa28e9bb5c86d08a8aa11c45c9a69d91e25f7e2602ddc88501a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1af8d93cb90f00395e7303b1cf6f9036ef5f931025980f2ba73ca800877528a4
MD5 e838095ca9ab164c8266f6ae16398ff3
BLAKE2b-256 16c3e3936275d1c4e42e21b8318ff6c07ce4f8755a03637f3664d3be592c1ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 747921954581e69f12b49f0e82ebbc53c560caad1de2f97aac8cd19c23439c0b
MD5 eaa890d3f75f75a6fef54cd060d7e758
BLAKE2b-256 17114ab7b3ba8b5adefd9a3437fb1a38ae5cc237a9857a4cab529e53e66a8314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f18e122ca9c3079fc15852563364863d0631da41e15f22d204f3d6c46696fce8
MD5 13e1c27ceb5557f168510d6602527482
BLAKE2b-256 52ad390d434937ac9fbce368a4f2f8630d3ec9e1e3ede45d047104dd7536669a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 093f211faa1e29058e496b9e8831f583d6888c173ab68d8f450e3b145cfde014
MD5 8bf3801c8358fca489f29320dc6ced2e
BLAKE2b-256 7797b420e5dd8226d3d771de700cc709a09b7a6207b206915cfd6bfc7a06eb5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e19a492d20791b61402c6f7538abed2a5d8af9f4a259f0a90d6bac8b98d6220
MD5 9747e13e4d0fc452a4de738082cf6243
BLAKE2b-256 7141dade0b204272c28aefc7edc7d4cf54106082ac7e02b538a1b66f1a9ddd31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d92a545f42a2ba873d4792ac2ee6154e8dd45e8eb394a8b8d46a1e574290601e
MD5 614a751eeec9d62c0c585873d3a71295
BLAKE2b-256 6f705ea7b5f97fb52f39e776c9ecefda2876bf3c6e296fd172162a1fab01f14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cad392d3789d52c880d8ec5a3719549e5941d93c941cc0b9ef5040d744f709ff
MD5 05f80ffcc47025755261b4665a2ab39e
BLAKE2b-256 0a534da91e2e31867d2936c03ec183bcb38578b573214368acfe6b4c952bc458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa618c259913064c7598dec40411e8247227fb63277787882aeada7c80dceb39
MD5 a103e3a3d3b3afaa58a111f55df59382
BLAKE2b-256 626c490fbbca36841660ecce19fcd9d5718519ea76bf5ae2da6a25454ea740c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da2d246d837efb39677169060f22172ee47f53a6cb3d38af6350c385365c2aff
MD5 4a317241f1d4107468b390f2c7a0b547
BLAKE2b-256 4cc761e75694eeb72e4fe9a94615d72a6453d2f48ca277a4cbeeee7b4fc8e17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6bcc405e7c720cc31afab8f59abaccc193f1abb00e59d280148001fa90e5adf3
MD5 633839f15771f69d65eca1ee262d605c
BLAKE2b-256 db94e40f7b4a5511d67aa1a991d3a46bb196f56452f4e0f78f82d3a184eab21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2121e4eb32f7141de8b75f4fdbc56e599d7e83b97f5f332ca4ad3fa8a9fec16f
MD5 495252f6ff415ba7880dc321ba0c500e
BLAKE2b-256 ddb01b5b2a61df875a65f0851353b48d2c862bf7111c03dc1cdd900162599b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53a929e1902e7bd8beeb59d943ef6bfb93a992bc0a9c1c07b48e086891795ccc
MD5 dda398907a0fcd8d4c3ff6841d3efae1
BLAKE2b-256 a031b2bcc56345cef4d4fb60681eca2ab67c1248f647508a2791ead5a84abb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7fd7e74610d0bfaccfdfe3efe9cc5201abfa37e53ea72ada2960467a3dab22c
MD5 9c044491c6d20ee8a3008165168b85d1
BLAKE2b-256 29e509cb386f273769fc07b8659415680d1bbe41402a53c51738dbf7c4ce573b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5eaa499b99354b9d0d1a83ef9aa916d06d2c9670e860fd143bab951560202936
MD5 705b0d0c5e0d596b0e5e73d5bfc48eab
BLAKE2b-256 b3aa01cf4c6e848ed69cf12f1b6e8d11893f56c7e78d5ca6de917bceaf24c505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc82daac2793bf91f17c16021bdd10d71d4c86a8a00fe58003ddb8a8eb2739d
MD5 1763d4128a3f5ce6f80b78993ff7313f
BLAKE2b-256 e10ee7f15c9d3b7f59fadc7710d29a0752a5c658357f7373104da51418235c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f87ab264e40a9092ee890435a88190c9cd80f4ed76a4d068e7e175a849960770
MD5 260efca17fb122766e98e854b6f62c7c
BLAKE2b-256 67fcc0f74f1deae68901e82e16cbaf58197cf1abba644adcd3d30b1e708a9c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 513c8da8bb5fedf8a9e672c679450a9d71794f9e9bfab8f90fa57e4dd0e7b09d
MD5 411d7dd13ab47233cb4fafa7e24a9af9
BLAKE2b-256 bc5dfa599b219e265b1d94b1b25031dcdbdf74149f21e537be832e7ee383efa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40b9049453811dd6089dae6ad1bdca0892bed2f2914e0ac80a784612efd2423b
MD5 a0ba135e4be4767611b36ebfbefda23e
BLAKE2b-256 51b286f6848bc2f429c75cd6882722560e723c83e220b98a72f1e4215b7df76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54c8974860ff5eae16c1aa332cd8a6249e2c51d14fe27f4f2317a59cacb340d9
MD5 dba48ae602ad8f7a773554a033b196b2
BLAKE2b-256 176c079057a314dd07c7d3ec8dc91b559af1295467791cb90fe92c70052f7566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core_html_parser-1.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07f27943680d6192c8f17b71ec47806f485d0c1d4fc962ac5690af9a82cc64af
MD5 4a491323dcb54ce01993fb6bd00c3f03
BLAKE2b-256 498346a38111a8237b1eb291bdda99896f53d5545fca328d28d7c85c64aa1d1b

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