djc-core-html-parser


Namedjc-core-html-parser JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryHTML parser used by django-components written in Rust.
upload_time2025-01-26 14:26:43
maintainerNone
docs_urlNone
authorNone
requires_python<4.0,>=3.8
licenseMIT
keywords django components html
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # djc-core-html-parser

HTML parser used by [django-components](https://github.com/django-components/django-components). Written in Rust, exposed as a Python package with [maturin](https://www.maturin.rs/).

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

## Installation

```sh
pip install djc-core-html-parser
```

## Usage

```python
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.

```python
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

   ```sh
   python -m venv .venv
   ```

2. Install dependencies

   ```sh
   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

   ```sh
   cargo test
   ```

5. Build the Python package

   ```sh
   maturin develop
   ```

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

6. Run Python tests

   ```sh
   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.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "djc-core-html-parser",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "django, components, html",
    "author": null,
    "author_email": "Juro Oravec <juraj.oravec.josefson@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/23/62/7ffd25bbbcf6bd94f628b06d93e85921842c9d3334c4a6fafd04c8358573/djc_core_html_parser-1.0.1.tar.gz",
    "platform": null,
    "description": "# djc-core-html-parser\n\nHTML parser used by [django-components](https://github.com/django-components/django-components). Written in Rust, exposed as a Python package with [maturin](https://www.maturin.rs/).\n\nThis implementation was found to be 40-50x faster than our Python implementation, taking ~90ms to parse 5 MB of HTML.\n\n## Installation\n\n```sh\npip install djc-core-html-parser\n```\n\n## Usage\n\n```python\nfrom djc_core_html_parser import set_html_attributes\n\nhtml = '<div><p>Hello</p></div>'\nresult, _ = set_html_attributes(\n  html,\n  # Add attributes to the root elements\n  root_attributes=['data-root-id'],\n  # Add attributes to all elements\n  all_attributes=['data-v-123'],\n)\n```\n\nTo save ourselves from re-parsing the HTML, `set_html_attributes` returns not just the transformed HTML, but also a dictionary as the second item.\n\nThis dictionary contains a record of which HTML attributes were written to which elemenents.\n\nTo populate this dictionary, you need set `watch_on_attribute` to an attribute name.\n\nThen, during the HTML transformation, we check each element for this attribute. And if the element HAS this attribute, we:\n\n1. Get the value of said attribute\n2. Record the attributes that were added to the element, using the value of the watched attribute as the key.\n\n```python\nfrom djc_core_html_parser import set_html_attributes\n\nhtml = \"\"\"\n  <div data-watch-id=\"123\">\n    <p data-watch-id=\"456\">\n      Hello\n    </p>\n  </div>\n\"\"\"\n\nresult, captured = set_html_attributes(\n  html,\n  # Add attributes to the root elements\n  root_attributes=['data-root-id'],\n  # Add attributes to all elements\n  all_attributes=['data-djc-tag'],\n  # Watch for this attribute on elements\n  watch_on_attribute='data-watch-id',\n)\n\nprint(captured)\n# {\n#   '123': ['data-root-id', 'data-djc-tag'],\n#   '456': ['data-djc-tag'],\n# }\n```\n\n## Development\n\n1. Setup python env\n\n   ```sh\n   python -m venv .venv\n   ```\n\n2. Install dependencies\n\n   ```sh\n   pip install -r requirements-dev.txt\n   ```\n\n   The dev requirements also include `maturin` which is used packaging a Rust project\n   as Python package.\n\n3. Install Rust\n\n   See https://www.rust-lang.org/tools/install\n\n4. Run Rust tests\n\n   ```sh\n   cargo test\n   ```\n\n5. Build the Python package\n\n   ```sh\n   maturin develop\n   ```\n\n   To build the production-optimized package, use `maturin develop --release`.\n\n6. Run Python tests\n\n   ```sh\n   pytest\n   ```\n\n   > NOTE: When running Python tests, you need to run `maturin develop` first.\n\n## Deployment\n\nDeployment is done automatically via GitHub Actions.\n\nTo publish a new version of the package, you need to:\n\n1. Bump the version in `pyproject.toml` and `Cargo.toml`\n2. Open a PR and merge it to `main`.\n3. 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.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "HTML parser used by django-components written in Rust.",
    "version": "1.0.1",
    "project_urls": {
        "Changelog": "https://github.com/django-components/djc-core-html-parser/blob/main/CHANGELOG.md",
        "Donate": "https://github.com/sponsors/EmilStenstrom",
        "Homepage": "https://github.com/django-components/djc-core-html-parser/",
        "Issues": "https://github.com/django-components/djc-core-html-parser/issues"
    },
    "split_keywords": [
        "django",
        " components",
        " html"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c319f76e4e70f3f9bafbdd87a7bc722f093837e92cfe49a25eefb285c125ac00",
                "md5": "50cf4c52d919bd0a9d099a325875acb8",
                "sha256": "5e1734563259140cdb2df98be964d9e1732809ac656fb1fee9be2d18a6f9efc4"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50cf4c52d919bd0a9d099a325875acb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1006693,
            "upload_time": "2025-01-26T14:23:53",
            "upload_time_iso_8601": "2025-01-26T14:23:53.370185Z",
            "url": "https://files.pythonhosted.org/packages/c3/19/f76e4e70f3f9bafbdd87a7bc722f093837e92cfe49a25eefb285c125ac00/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8385fd6ca96d61121918f3fb04116faf164af243d619df68d691f567921f9308",
                "md5": "d18e93ffb8da8ec74366f5ae6f5c2f12",
                "sha256": "848152791e338a594103c84a8f9dfb233e6a6b9a8ca3e81438a08e574f5e2043"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d18e93ffb8da8ec74366f5ae6f5c2f12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1015608,
            "upload_time": "2025-01-26T14:24:13",
            "upload_time_iso_8601": "2025-01-26T14:24:13.963821Z",
            "url": "https://files.pythonhosted.org/packages/83/85/fd6ca96d61121918f3fb04116faf164af243d619df68d691f567921f9308/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6574ba240641ed67e94aeb0f827adadf4f95fcb9bd7bc5411d8ec5bb1e79973",
                "md5": "f1d582c034ad42c655e0936afced9340",
                "sha256": "0716d6cf1208ae1f9f0f5b3bf12c3f619c17fd996a4ecd529255b42b650fb6dd"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f1d582c034ad42c655e0936afced9340",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1019076,
            "upload_time": "2025-01-26T14:24:29",
            "upload_time_iso_8601": "2025-01-26T14:24:29.521056Z",
            "url": "https://files.pythonhosted.org/packages/d6/57/4ba240641ed67e94aeb0f827adadf4f95fcb9bd7bc5411d8ec5bb1e79973/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "205cc4ea2604086185004b5c874f1b0ecc200b3dc366e8f928fbcff1188317f9",
                "md5": "1ac54f2fe44ba236503c3677ad4f4ac7",
                "sha256": "6e7be5a313d72607b2add0ac3cc88815bd8c174e8f132ccd4db0da7db7cd3f47"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1ac54f2fe44ba236503c3677ad4f4ac7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1257197,
            "upload_time": "2025-01-26T14:24:44",
            "upload_time_iso_8601": "2025-01-26T14:24:44.657459Z",
            "url": "https://files.pythonhosted.org/packages/20/5c/c4ea2604086185004b5c874f1b0ecc200b3dc366e8f928fbcff1188317f9/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d0b70d1691ee7746dde9b326073b80b9fbe8aca6a458e061591a13c90e91d05",
                "md5": "c019354e5d296a63ef158fedca8f4751",
                "sha256": "daecaac2ac6d4f0fcdbac7b02945771addb2b63b4072ea506c7fd3ef60313e97"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c019354e5d296a63ef158fedca8f4751",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1020149,
            "upload_time": "2025-01-26T14:25:16",
            "upload_time_iso_8601": "2025-01-26T14:25:16.117424Z",
            "url": "https://files.pythonhosted.org/packages/5d/0b/70d1691ee7746dde9b326073b80b9fbe8aca6a458e061591a13c90e91d05/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09e5da08feacbb817145510d5c9c4f184d49624f08f93f86e8def9daf667c96d",
                "md5": "ed1274fe59d562157362ad047ffee533",
                "sha256": "e9ab4438bf94858262b515c5bb96002c9843ebf0cb8c020dfb95d1772f7fc8a2"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ed1274fe59d562157362ad047ffee533",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1017158,
            "upload_time": "2025-01-26T14:24:59",
            "upload_time_iso_8601": "2025-01-26T14:24:59.384004Z",
            "url": "https://files.pythonhosted.org/packages/09/e5/da08feacbb817145510d5c9c4f184d49624f08f93f86e8def9daf667c96d/djc_core_html_parser-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e6a2eeba15b5598f1e9d83dd18f8b903165536ae205c0acbe3faa33be05ab45",
                "md5": "80b115343a0c4f79b730430a4abaa59c",
                "sha256": "24487359bf1e7b2bdca711dc4a79b25f82465e8b89b7972696efbeacb79a06f6"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80b115343a0c4f79b730430a4abaa59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1170254,
            "upload_time": "2025-01-26T14:25:35",
            "upload_time_iso_8601": "2025-01-26T14:25:35.055244Z",
            "url": "https://files.pythonhosted.org/packages/6e/6a/2eeba15b5598f1e9d83dd18f8b903165536ae205c0acbe3faa33be05ab45/djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd4edc70997656febce4ed021a2a3e492b6ee53d69a76090f16dae7ca4a0d5c8",
                "md5": "eabd4395f0d2f250ee2cf4a1a9b2368b",
                "sha256": "bcf2278b8bcbba0a6cdfbe425a945cf851a14ebf06c7360ad96e427be013c992"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eabd4395f0d2f250ee2cf4a1a9b2368b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1264926,
            "upload_time": "2025-01-26T14:25:52",
            "upload_time_iso_8601": "2025-01-26T14:25:52.989015Z",
            "url": "https://files.pythonhosted.org/packages/cd/4e/dc70997656febce4ed021a2a3e492b6ee53d69a76090f16dae7ca4a0d5c8/djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03d0b26e320893aec620c1216fbab0c4e56cc5d74ab0b4ba908acdf7daa50935",
                "md5": "50b9ea7d732cab76b6f9db2cabf4bbc2",
                "sha256": "68627cbf750238884e4b0c64c611db7ded16f45de09d6c32d8de1968f8157ee5"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "50b9ea7d732cab76b6f9db2cabf4bbc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1179137,
            "upload_time": "2025-01-26T14:26:08",
            "upload_time_iso_8601": "2025-01-26T14:26:08.248630Z",
            "url": "https://files.pythonhosted.org/packages/03/d0/b26e320893aec620c1216fbab0c4e56cc5d74ab0b4ba908acdf7daa50935/djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6f1602262399033e65c47da696b6492d4fd6fa48b7ad1d5c50fdd049c2c8247",
                "md5": "04a868105aa9d5bdd88de9467a1cd65e",
                "sha256": "8dfa8ce018ab58f63a0c99f9b26770b21bc26e86172dc1bca2437fbd2b8eed59"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04a868105aa9d5bdd88de9467a1cd65e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1177559,
            "upload_time": "2025-01-26T14:26:23",
            "upload_time_iso_8601": "2025-01-26T14:26:23.365311Z",
            "url": "https://files.pythonhosted.org/packages/c6/f1/602262399033e65c47da696b6492d4fd6fa48b7ad1d5c50fdd049c2c8247/djc_core_html_parser-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d85c11e35e213a3a97ab0feae0f665c6db18a7721412bc88e1a68172862a876b",
                "md5": "ac2cebfbb484dcf3abbe22b8b1badeeb",
                "sha256": "53995a23e94602024522339d7732a68e1644ac75c0218f0164fff38327c34c43"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ac2cebfbb484dcf3abbe22b8b1badeeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 132238,
            "upload_time": "2025-01-26T14:26:52",
            "upload_time_iso_8601": "2025-01-26T14:26:52.913315Z",
            "url": "https://files.pythonhosted.org/packages/d8/5c/11e35e213a3a97ab0feae0f665c6db18a7721412bc88e1a68172862a876b/djc_core_html_parser-1.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5d45ff64d77797a361488036d135bde23d2c50bfdcb2ac91fc70791524d8a02",
                "md5": "ce3ee050a1a201ce06fd2a197d8172c8",
                "sha256": "f64b4812d9351de9cc56107b29d1d117689d2319c5f4f4feed29b79be1c35ab5"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce3ee050a1a201ce06fd2a197d8172c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 138356,
            "upload_time": "2025-01-26T14:26:44",
            "upload_time_iso_8601": "2025-01-26T14:26:44.531454Z",
            "url": "https://files.pythonhosted.org/packages/a5/d4/5ff64d77797a361488036d135bde23d2c50bfdcb2ac91fc70791524d8a02/djc_core_html_parser-1.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9a3a8513f2e42a3e025defde65e8a2f3865cc5ea3d8995918e2aebe34c9620c",
                "md5": "f92db5d4d907b063489e5aa9b4da6c65",
                "sha256": "b88bc2800a0bc0520757b05138331325b8f403d94fd67215adbca97568e80be2"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f92db5d4d907b063489e5aa9b4da6c65",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 247802,
            "upload_time": "2025-01-26T14:25:31",
            "upload_time_iso_8601": "2025-01-26T14:25:31.221935Z",
            "url": "https://files.pythonhosted.org/packages/b9/a3/a8513f2e42a3e025defde65e8a2f3865cc5ea3d8995918e2aebe34c9620c/djc_core_html_parser-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1456df1e216106d4d72eb4f50aa4951aab0863a3e6e3ee9182d13bd1b41a0c7b",
                "md5": "f7d43a68e6c0480f76a344873bdf5212",
                "sha256": "4c59b53418a48f8eb6d9478b3e76bc0658f02f08bfa7650856514698fe478c9f"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f7d43a68e6c0480f76a344873bdf5212",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 239618,
            "upload_time": "2025-01-26T14:25:27",
            "upload_time_iso_8601": "2025-01-26T14:25:27.579772Z",
            "url": "https://files.pythonhosted.org/packages/14/56/df1e216106d4d72eb4f50aa4951aab0863a3e6e3ee9182d13bd1b41a0c7b/djc_core_html_parser-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40802391abb5cf6942901f61a5741dda635d514f15f2b03660e23395e1792ef5",
                "md5": "dbb2f63bcf61d490fb6ffe6b4d06ecac",
                "sha256": "63af0744bb5eeee949ebd1b7d8b556de2f5f683963c0baf8c908795e30fd9005"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dbb2f63bcf61d490fb6ffe6b4d06ecac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1006783,
            "upload_time": "2025-01-26T14:23:55",
            "upload_time_iso_8601": "2025-01-26T14:23:55.682958Z",
            "url": "https://files.pythonhosted.org/packages/40/80/2391abb5cf6942901f61a5741dda635d514f15f2b03660e23395e1792ef5/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3009bd9cd32ed9852bab753769f54f0f7e279de335d44457479a3098ecd2117b",
                "md5": "4abcf31bb3e091bdd1301cd9f86e3a08",
                "sha256": "3b97dc3f1d3d42bb08b3f6361528434e45663bb5d30e8f8bef44946fb0cd54b0"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4abcf31bb3e091bdd1301cd9f86e3a08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1015554,
            "upload_time": "2025-01-26T14:24:15",
            "upload_time_iso_8601": "2025-01-26T14:24:15.530235Z",
            "url": "https://files.pythonhosted.org/packages/30/09/bd9cd32ed9852bab753769f54f0f7e279de335d44457479a3098ecd2117b/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "016de755bd9109c841be01cf11a30316b2d55ee1a76519dd14fbf5f7813e1e84",
                "md5": "8fe3363d043d3a0c4834d44b82efab35",
                "sha256": "0164c291944df92603fe2b6b1c9ee9b780c11e93903d43d320ed9296eb24b3c4"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8fe3363d043d3a0c4834d44b82efab35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1018978,
            "upload_time": "2025-01-26T14:24:30",
            "upload_time_iso_8601": "2025-01-26T14:24:30.864718Z",
            "url": "https://files.pythonhosted.org/packages/01/6d/e755bd9109c841be01cf11a30316b2d55ee1a76519dd14fbf5f7813e1e84/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "065fb413e9f9cd181e133be339e6e0a3e1b3277ce024899a882f4fb66d5c422e",
                "md5": "d10e7f1e22a389a71f10b3cc28a3e12a",
                "sha256": "68e296bde22e05b9801091257a51652ae657b4d1222618255277950303bab4ea"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d10e7f1e22a389a71f10b3cc28a3e12a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1257156,
            "upload_time": "2025-01-26T14:24:46",
            "upload_time_iso_8601": "2025-01-26T14:24:46.058576Z",
            "url": "https://files.pythonhosted.org/packages/06/5f/b413e9f9cd181e133be339e6e0a3e1b3277ce024899a882f4fb66d5c422e/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af7466baa8ff0b67edfbd3804c903e6976470ce2a8c196ea0af6838e99d3ef04",
                "md5": "0bfb5af9da563b264fc7b4879c426c9f",
                "sha256": "523e2a29d5068c50d304b1df1d85522aa669ba95df34d7eae51c53c948d06b35"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bfb5af9da563b264fc7b4879c426c9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1020104,
            "upload_time": "2025-01-26T14:25:17",
            "upload_time_iso_8601": "2025-01-26T14:25:17.417512Z",
            "url": "https://files.pythonhosted.org/packages/af/74/66baa8ff0b67edfbd3804c903e6976470ce2a8c196ea0af6838e99d3ef04/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b38f1e63de09e895a533e61b155df9f81b0fe8e25b4a552f4372a6e6afa14df8",
                "md5": "a2530dec10b5962535668743262e9e5a",
                "sha256": "9e083c41922991e0d087c46a4434ac503bebfc8f6516fa967a3cc92c668a2f6d"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a2530dec10b5962535668743262e9e5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1017126,
            "upload_time": "2025-01-26T14:25:00",
            "upload_time_iso_8601": "2025-01-26T14:25:00.864372Z",
            "url": "https://files.pythonhosted.org/packages/b3/8f/1e63de09e895a533e61b155df9f81b0fe8e25b4a552f4372a6e6afa14df8/djc_core_html_parser-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "018859a22a06db0f47ab041e791ccfb39431ae0b434ef99e2de60ddeb2158c33",
                "md5": "03c5faa3d98c79f59d1baabc773720ec",
                "sha256": "19de5e024cb1573c41e9fd17c50812c1f0b4f6facba35c935f790b49687d454e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03c5faa3d98c79f59d1baabc773720ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1170126,
            "upload_time": "2025-01-26T14:25:36",
            "upload_time_iso_8601": "2025-01-26T14:25:36.408835Z",
            "url": "https://files.pythonhosted.org/packages/01/88/59a22a06db0f47ab041e791ccfb39431ae0b434ef99e2de60ddeb2158c33/djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a7f1ec13f1ca93d8bbedda7ac8298fd7402cf1265238e25ff11823538b0a68d",
                "md5": "4f1f487275f7b625d7775bd81bf1056f",
                "sha256": "d344d0cfa8bf4bcb8f9bbd74348a45d3d4374d5d46acf35a3b5cd648c6e81dfa"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4f1f487275f7b625d7775bd81bf1056f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1264965,
            "upload_time": "2025-01-26T14:25:54",
            "upload_time_iso_8601": "2025-01-26T14:25:54.411481Z",
            "url": "https://files.pythonhosted.org/packages/3a/7f/1ec13f1ca93d8bbedda7ac8298fd7402cf1265238e25ff11823538b0a68d/djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e075224308c22824964cefffa31c187db0432923032f95a66332b4c336db29d2",
                "md5": "3e3f89ffa7ab4b8ee4e2555c0bd0b070",
                "sha256": "1313c9044e840696ddb2c20e12c3cb15cb42f07f19df8ccc0fd7a3c1e19a0155"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3e3f89ffa7ab4b8ee4e2555c0bd0b070",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1179065,
            "upload_time": "2025-01-26T14:26:10",
            "upload_time_iso_8601": "2025-01-26T14:26:10.579943Z",
            "url": "https://files.pythonhosted.org/packages/e0/75/224308c22824964cefffa31c187db0432923032f95a66332b4c336db29d2/djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b041a19f1c113c1f6385a6af658b52da8e36401d3e96bc2e7caacd9ad36b4530",
                "md5": "2378ea68bb6308c24de29b3393066945",
                "sha256": "a0229a9a94aff7eb1fe42d724e3a82f67dd542c57bb2199860fe906c2db4cdc2"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2378ea68bb6308c24de29b3393066945",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 1177541,
            "upload_time": "2025-01-26T14:26:25",
            "upload_time_iso_8601": "2025-01-26T14:26:25.083824Z",
            "url": "https://files.pythonhosted.org/packages/b0/41/a19f1c113c1f6385a6af658b52da8e36401d3e96bc2e7caacd9ad36b4530/djc_core_html_parser-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8d222d9b0821dca17fb33657261807f4c18ccd0bae53748c17831bb22170c72",
                "md5": "c64ef2eacc79cce94df39a5b295efd18",
                "sha256": "e1a319701bda3126ee241a74ef54dcee3b42e0564ad74e94720f1e57d17fc187"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c64ef2eacc79cce94df39a5b295efd18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 132240,
            "upload_time": "2025-01-26T14:26:54",
            "upload_time_iso_8601": "2025-01-26T14:26:54.018605Z",
            "url": "https://files.pythonhosted.org/packages/a8/d2/22d9b0821dca17fb33657261807f4c18ccd0bae53748c17831bb22170c72/djc_core_html_parser-1.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f8cbb640cbbe69dbf28c236eb2a53f9d63dc2c6768b84c241a6d558049d9774",
                "md5": "fbf9fca45b988acc41924f4559d33dab",
                "sha256": "78da291f0198f303369e67b337d094f4926bb05b25d5f88aa60fa9cc706dad3e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbf9fca45b988acc41924f4559d33dab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 138363,
            "upload_time": "2025-01-26T14:26:46",
            "upload_time_iso_8601": "2025-01-26T14:26:46.887649Z",
            "url": "https://files.pythonhosted.org/packages/3f/8c/bb640cbbe69dbf28c236eb2a53f9d63dc2c6768b84c241a6d558049d9774/djc_core_html_parser-1.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ea49b8f79af3b019007dc631077d14b5804bdac14d075fddf86dc17f3763ea1",
                "md5": "d8bc9a9a0cb929ae25a2dca3dbe35ff2",
                "sha256": "73ab53d384ab2cec73e93c71007470e1bcb55fc5049e6e69072e2c7e4806b4b7"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8bc9a9a0cb929ae25a2dca3dbe35ff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 247382,
            "upload_time": "2025-01-26T14:25:32",
            "upload_time_iso_8601": "2025-01-26T14:25:32.561170Z",
            "url": "https://files.pythonhosted.org/packages/2e/a4/9b8f79af3b019007dc631077d14b5804bdac14d075fddf86dc17f3763ea1/djc_core_html_parser-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c906ea8de8dcdd8dc926e35d610d4128a53f327e8a696324836a1dd4139b3d7",
                "md5": "516b1b62c727b9623bb6ee109e79d770",
                "sha256": "9271392aea7209aa6a5d0a1f63382aba1fa4099484223093261c709e3122aae9"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "516b1b62c727b9623bb6ee109e79d770",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 238894,
            "upload_time": "2025-01-26T14:25:28",
            "upload_time_iso_8601": "2025-01-26T14:25:28.823773Z",
            "url": "https://files.pythonhosted.org/packages/0c/90/6ea8de8dcdd8dc926e35d610d4128a53f327e8a696324836a1dd4139b3d7/djc_core_html_parser-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "353807b8701cc5902dc9e7e677d6f04ebdc8858c86ab88f93c7fe9f18748f15d",
                "md5": "21c3087752e1c1a5bf21b805059d9e2d",
                "sha256": "b658c93e541f8cfe328d407fb152fd47b6f13d6c227f12494d381162ca5243cc"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21c3087752e1c1a5bf21b805059d9e2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1005077,
            "upload_time": "2025-01-26T14:23:57",
            "upload_time_iso_8601": "2025-01-26T14:23:57.908865Z",
            "url": "https://files.pythonhosted.org/packages/35/38/07b8701cc5902dc9e7e677d6f04ebdc8858c86ab88f93c7fe9f18748f15d/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de73a12e78239adeaad8ed1cc5364d4a996f7a4c90efc91123d30888e7f3d0d1",
                "md5": "56f8e0da8afbf2341e163e243bd7c8b5",
                "sha256": "3f29b60e3ce3d2b7f249c94bcf53bcd5d87ce32f7fa0dd20ab3fd92683cc1b00"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "56f8e0da8afbf2341e163e243bd7c8b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1013569,
            "upload_time": "2025-01-26T14:24:17",
            "upload_time_iso_8601": "2025-01-26T14:24:17.725298Z",
            "url": "https://files.pythonhosted.org/packages/de/73/a12e78239adeaad8ed1cc5364d4a996f7a4c90efc91123d30888e7f3d0d1/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc4c944d0d96bc30a01818cde09763a72ed6511895ff70620d48f736a979df08",
                "md5": "643e32307dd738a5f08333fe3672ec1c",
                "sha256": "0d2cc9fcbf29b3c8107488705c72618fbe2436a4d841de86028ae9b9118a5f32"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "643e32307dd738a5f08333fe3672ec1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1018291,
            "upload_time": "2025-01-26T14:24:32",
            "upload_time_iso_8601": "2025-01-26T14:24:32.234760Z",
            "url": "https://files.pythonhosted.org/packages/cc/4c/944d0d96bc30a01818cde09763a72ed6511895ff70620d48f736a979df08/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00caa0851ff7a6dfd81fb946ed7bdcdd87f2da109f0ed1fd52a150559426c64d",
                "md5": "b254e7376b68abd531a29a0ab764106e",
                "sha256": "ba10df57b1ff8fa1499bbcd52155add40f6af98ea30f4f2de21de2db9e1b35b7"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b254e7376b68abd531a29a0ab764106e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1263281,
            "upload_time": "2025-01-26T14:24:47",
            "upload_time_iso_8601": "2025-01-26T14:24:47.479769Z",
            "url": "https://files.pythonhosted.org/packages/00/ca/a0851ff7a6dfd81fb946ed7bdcdd87f2da109f0ed1fd52a150559426c64d/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77c1df082c6dfda0995cbad89aa2b71096e2d0494c93a89744f8ef43aefb5203",
                "md5": "8a5023a91419f8ded08c58a0c7cfe26b",
                "sha256": "dfe7767d4beec3e3ccee4f0fb5e4c153b3a3c95f73c29ed64f8988c8aa726c58"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a5023a91419f8ded08c58a0c7cfe26b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1019145,
            "upload_time": "2025-01-26T14:25:19",
            "upload_time_iso_8601": "2025-01-26T14:25:19.706832Z",
            "url": "https://files.pythonhosted.org/packages/77/c1/df082c6dfda0995cbad89aa2b71096e2d0494c93a89744f8ef43aefb5203/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f97daadf5925c7e0de40949b324108c245581548c0d170c2de921109320568f2",
                "md5": "0a75deeadfc6d3159ed781389f5cbb45",
                "sha256": "678ef0ccecbfee2aa513d09c7983c933ea89016b5932361fea2113565b455b7d"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0a75deeadfc6d3159ed781389f5cbb45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1014792,
            "upload_time": "2025-01-26T14:25:02",
            "upload_time_iso_8601": "2025-01-26T14:25:02.893575Z",
            "url": "https://files.pythonhosted.org/packages/f9/7d/aadf5925c7e0de40949b324108c245581548c0d170c2de921109320568f2/djc_core_html_parser-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5dd6740495f03a58098d1d817f474c72d80bd0b6f0a2228a2db6e700ecf92317",
                "md5": "14d480ab43836c1ae2cb8c5799790fb7",
                "sha256": "35b25962a14f0075ecf4a71949bde15d78532068ffda28022bf22fbec0403f6c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14d480ab43836c1ae2cb8c5799790fb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1168412,
            "upload_time": "2025-01-26T14:25:39",
            "upload_time_iso_8601": "2025-01-26T14:25:39.755427Z",
            "url": "https://files.pythonhosted.org/packages/5d/d6/740495f03a58098d1d817f474c72d80bd0b6f0a2228a2db6e700ecf92317/djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66d8e50c9ff192daa2bd4d44db3682676f2bc44b07b10b056b5ebded782d2c92",
                "md5": "971676e9f8bb894310ac8b2c2eae8326",
                "sha256": "08bbe410f53da76741e471f4e27adf6c6f48cc67e7c5cf0797884db6689bcd24"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "971676e9f8bb894310ac8b2c2eae8326",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1264008,
            "upload_time": "2025-01-26T14:25:55",
            "upload_time_iso_8601": "2025-01-26T14:25:55.925132Z",
            "url": "https://files.pythonhosted.org/packages/66/d8/e50c9ff192daa2bd4d44db3682676f2bc44b07b10b056b5ebded782d2c92/djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bcec7e31c71088eefc35963a249a857db6e9d16f0555e2ca122509824ec5003",
                "md5": "9eb5bf34e7fe8a2a137a4faf46891813",
                "sha256": "e029a96a019b61cee3ac3e91ffccfb28c19ebc27e31305e723ed801dd5779f39"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9eb5bf34e7fe8a2a137a4faf46891813",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1176187,
            "upload_time": "2025-01-26T14:26:11",
            "upload_time_iso_8601": "2025-01-26T14:26:11.957015Z",
            "url": "https://files.pythonhosted.org/packages/7b/ce/c7e31c71088eefc35963a249a857db6e9d16f0555e2ca122509824ec5003/djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bda8d7b39c47555ff5b47091b236dd161ed7d8999c2bcea943a36bb095afacff",
                "md5": "e49673499a2827afdafc875cde5e60fc",
                "sha256": "393ce3de0acb274ad095e3be6b013cea664a3781c6d2536daef6512aad5a6f13"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e49673499a2827afdafc875cde5e60fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 1176958,
            "upload_time": "2025-01-26T14:26:26",
            "upload_time_iso_8601": "2025-01-26T14:26:26.917149Z",
            "url": "https://files.pythonhosted.org/packages/bd/a8/d7b39c47555ff5b47091b236dd161ed7d8999c2bcea943a36bb095afacff/djc_core_html_parser-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "267a573c743203f4c34ef1928cb13d1d4edcafa5ac11ee35e6b308e1ab1736a5",
                "md5": "8e8c43efe6b31e371118153659d0b6a2",
                "sha256": "a53a88a40abbf39de0a1ed8b6f252c52143aaadcb5548e9505b0c68fccc32d9c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "8e8c43efe6b31e371118153659d0b6a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 132557,
            "upload_time": "2025-01-26T14:26:55",
            "upload_time_iso_8601": "2025-01-26T14:26:55.087315Z",
            "url": "https://files.pythonhosted.org/packages/26/7a/573c743203f4c34ef1928cb13d1d4edcafa5ac11ee35e6b308e1ab1736a5/djc_core_html_parser-1.0.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ca4a62e04e51c65cefbd5a5a33d5a02cf1116ff929dd32b11be5a6750ebe906",
                "md5": "5df5c5988c27ddd9d92f256dad2d8df6",
                "sha256": "6182725a4e24bb3b9c7848c1902ad4d7785256332e03235c40d6392cb64a18a1"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5df5c5988c27ddd9d92f256dad2d8df6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 138666,
            "upload_time": "2025-01-26T14:26:48",
            "upload_time_iso_8601": "2025-01-26T14:26:48.761496Z",
            "url": "https://files.pythonhosted.org/packages/2c/a4/a62e04e51c65cefbd5a5a33d5a02cf1116ff929dd32b11be5a6750ebe906/djc_core_html_parser-1.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f34cb01bddab09b25902eaa9f3b9e7a9127baf40361ae70e9f66b2d4090edc4",
                "md5": "48642e3fa71892f5d023229156e60225",
                "sha256": "bbb68a531ade22e5c69fbc02a420981fe7b6242ff57bc2929f21ffc99e9630d2"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48642e3fa71892f5d023229156e60225",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 247386,
            "upload_time": "2025-01-26T14:25:33",
            "upload_time_iso_8601": "2025-01-26T14:25:33.782046Z",
            "url": "https://files.pythonhosted.org/packages/8f/34/cb01bddab09b25902eaa9f3b9e7a9127baf40361ae70e9f66b2d4090edc4/djc_core_html_parser-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fc9b42c3fab2690c2965e204e3789eda33a81fedcb1e434d14d3f20a3d0c83b",
                "md5": "6ac2fd3994f094155485f66d2a65d6aa",
                "sha256": "ab9fedd36605a13c52d0c19eb45c554099ba3568d528fed9f6a3466f8a1bcc40"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6ac2fd3994f094155485f66d2a65d6aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 238892,
            "upload_time": "2025-01-26T14:25:30",
            "upload_time_iso_8601": "2025-01-26T14:25:30.006739Z",
            "url": "https://files.pythonhosted.org/packages/2f/c9/b42c3fab2690c2965e204e3789eda33a81fedcb1e434d14d3f20a3d0c83b/djc_core_html_parser-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6f20a9ac0e5d88b2ec8bd80b886ed16e62c8ed6e7a95bcc7e1994bd2c734659",
                "md5": "b1ced551e595a448ba0587f0b71c5aca",
                "sha256": "b6dc8bd4605dfa66e5ac13e024ae55d6e7c2b8c0321616802db9aa1b2e2966d1"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b1ced551e595a448ba0587f0b71c5aca",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1005078,
            "upload_time": "2025-01-26T14:23:59",
            "upload_time_iso_8601": "2025-01-26T14:23:59.370663Z",
            "url": "https://files.pythonhosted.org/packages/f6/f2/0a9ac0e5d88b2ec8bd80b886ed16e62c8ed6e7a95bcc7e1994bd2c734659/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51a64465a748f271780449ebf23623df1fe9d2de3218cfc35e5ec58983704fa2",
                "md5": "2cfd83453c926a90711a9f3a3cd90e3a",
                "sha256": "1b2a8ef6127477236b3b263beafca6b78f3ed5e0ddbc5e6f44bda44ffed3b77f"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2cfd83453c926a90711a9f3a3cd90e3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1013567,
            "upload_time": "2025-01-26T14:24:20",
            "upload_time_iso_8601": "2025-01-26T14:24:20.038682Z",
            "url": "https://files.pythonhosted.org/packages/51/a6/4465a748f271780449ebf23623df1fe9d2de3218cfc35e5ec58983704fa2/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af265028801598a921c7e6238da148894cc13cc732e02d13b77f0b3478af8cdc",
                "md5": "a1e18af1124928ff71e6da021feb0a06",
                "sha256": "68d1490085148813d7fd35a5131014784424089153e1bd2f1551f517971393ea"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a1e18af1124928ff71e6da021feb0a06",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1018292,
            "upload_time": "2025-01-26T14:24:33",
            "upload_time_iso_8601": "2025-01-26T14:24:33.718949Z",
            "url": "https://files.pythonhosted.org/packages/af/26/5028801598a921c7e6238da148894cc13cc732e02d13b77f0b3478af8cdc/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cab438954674cf04a60ff83763d81ca19148b907fe2a678555fc0d48d35ebd65",
                "md5": "0702ecc98de9fafdbe409f9634d3d0dd",
                "sha256": "f5da7c09e0d8f3d35c905ee06664dc047979c7b800f3c6a0550a057bca1ac464"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0702ecc98de9fafdbe409f9634d3d0dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1263281,
            "upload_time": "2025-01-26T14:24:48",
            "upload_time_iso_8601": "2025-01-26T14:24:48.960143Z",
            "url": "https://files.pythonhosted.org/packages/ca/b4/38954674cf04a60ff83763d81ca19148b907fe2a678555fc0d48d35ebd65/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b810c51f379f2af1987f06252ebee4e408c8688215ada9f86eb4d673ce0b89e6",
                "md5": "2c3e775588f038161751378d04eb82c1",
                "sha256": "4e7efdaa4fa6d0ed4128c9b8b586cac8b12e9e7b40c2104a43bef761d126a147"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c3e775588f038161751378d04eb82c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1019146,
            "upload_time": "2025-01-26T14:25:21",
            "upload_time_iso_8601": "2025-01-26T14:25:21.211783Z",
            "url": "https://files.pythonhosted.org/packages/b8/10/c51f379f2af1987f06252ebee4e408c8688215ada9f86eb4d673ce0b89e6/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "916c2ff6553136efaa0df6782a1d0a48625bde4756d4fa5796ed775d769f8a54",
                "md5": "0b21d1670d7e65054f3b91eaf67836ad",
                "sha256": "2b5f11ac3c01168bc7b95f1ec3fbe4dae3173861c24d2ceab5d7488d7c06ba87"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "0b21d1670d7e65054f3b91eaf67836ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1014795,
            "upload_time": "2025-01-26T14:25:04",
            "upload_time_iso_8601": "2025-01-26T14:25:04.346969Z",
            "url": "https://files.pythonhosted.org/packages/91/6c/2ff6553136efaa0df6782a1d0a48625bde4756d4fa5796ed775d769f8a54/djc_core_html_parser-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f53f9c58d03975175b96290009bafe3fa97d73e3f0e959721a0576c65b04f64e",
                "md5": "d65ef5784ead3330c961202d951137ff",
                "sha256": "cfa484e664f266c506d595518d4e052b47b58e32ba1429b9133909e0a14d56be"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d65ef5784ead3330c961202d951137ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1168411,
            "upload_time": "2025-01-26T14:25:41",
            "upload_time_iso_8601": "2025-01-26T14:25:41.103389Z",
            "url": "https://files.pythonhosted.org/packages/f5/3f/9c58d03975175b96290009bafe3fa97d73e3f0e959721a0576c65b04f64e/djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cad175b307b0eabdc9c87eabc2c069ceabd35c14676d16eeaef2db4414dcef83",
                "md5": "558270581ba9add170695e053c14891f",
                "sha256": "82947fb70fe7c0e4b798a28a04278870d4e997d971e7493911713a73ea7ddd9e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "558270581ba9add170695e053c14891f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1264008,
            "upload_time": "2025-01-26T14:25:57",
            "upload_time_iso_8601": "2025-01-26T14:25:57.359191Z",
            "url": "https://files.pythonhosted.org/packages/ca/d1/75b307b0eabdc9c87eabc2c069ceabd35c14676d16eeaef2db4414dcef83/djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2909f600b9e3eef3ff6ebfce6fea2c9e79ef5cc72bbda04aa2750bd82ef75b7e",
                "md5": "c19774bda380856902e55de5d0bfa9be",
                "sha256": "f4a7c7a7f26c5d429434cfd991feca947efdac7558dc66bbe12cb30f9fc0c554"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c19774bda380856902e55de5d0bfa9be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1176186,
            "upload_time": "2025-01-26T14:26:13",
            "upload_time_iso_8601": "2025-01-26T14:26:13.325846Z",
            "url": "https://files.pythonhosted.org/packages/29/09/f600b9e3eef3ff6ebfce6fea2c9e79ef5cc72bbda04aa2750bd82ef75b7e/djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65cc80640aafc9d765bc4fadf7f300e116d192bbe587f12d3948c769dcf2c286",
                "md5": "37ba316bb29e5b19383b040fcf21216e",
                "sha256": "5042d6a2ecf53eab29fa8f6f5093a0000cc74a367f5c110fc663577aee3bf85c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37ba316bb29e5b19383b040fcf21216e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4.0,>=3.8",
            "size": 1176957,
            "upload_time": "2025-01-26T14:26:31",
            "upload_time_iso_8601": "2025-01-26T14:26:31.116208Z",
            "url": "https://files.pythonhosted.org/packages/65/cc/80640aafc9d765bc4fadf7f300e116d192bbe587f12d3948c769dcf2c286/djc_core_html_parser-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79ce64d678e0cb8b840f4b1b289a0c5d569bc87008bb9494c9ef2772ee8e0c96",
                "md5": "754aa3a63bdc2f49e0c7a27623fd2fc4",
                "sha256": "cb85e529b43a72335134b8088751d87fd34076d61b5e401464a337841c701dec"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "754aa3a63bdc2f49e0c7a27623fd2fc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1006899,
            "upload_time": "2025-01-26T14:24:00",
            "upload_time_iso_8601": "2025-01-26T14:24:00.923115Z",
            "url": "https://files.pythonhosted.org/packages/79/ce/64d678e0cb8b840f4b1b289a0c5d569bc87008bb9494c9ef2772ee8e0c96/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92f7bc3c4132fed02829472b0548e8d97ab1daa8d61ad4ff79bd366982897a63",
                "md5": "0f8244b75556cd2b66683a1d70e1b210",
                "sha256": "6cd443afff7352c45ddadcb2d77f3bc6a935320b6af09b8e5ea8ac3a00e67b6d"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0f8244b75556cd2b66683a1d70e1b210",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1015691,
            "upload_time": "2025-01-26T14:24:22",
            "upload_time_iso_8601": "2025-01-26T14:24:22.447835Z",
            "url": "https://files.pythonhosted.org/packages/92/f7/bc3c4132fed02829472b0548e8d97ab1daa8d61ad4ff79bd366982897a63/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a6dfdbcaecc6e336bd8ab556b25c02510c80d14fbcdb841a97240aea5c64f80",
                "md5": "f5a406101bff2b235aada46e404fe237",
                "sha256": "469a1c63f3532f3789e01c41830773913b4bb191a71fdb48f066ade14c8cfe1c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f5a406101bff2b235aada46e404fe237",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1019110,
            "upload_time": "2025-01-26T14:24:36",
            "upload_time_iso_8601": "2025-01-26T14:24:36.010177Z",
            "url": "https://files.pythonhosted.org/packages/9a/6d/fdbcaecc6e336bd8ab556b25c02510c80d14fbcdb841a97240aea5c64f80/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5156bfae216ba56949d79ca458bf95a6db3733876b77279e258dd238adee1fd4",
                "md5": "440fad1f09259bdf8e532336dc5b8b66",
                "sha256": "b603bc2f15666f35d18e01aa4ace86b2f9443c3b3f0cf29c9f495f51e8a6115a"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "440fad1f09259bdf8e532336dc5b8b66",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1257163,
            "upload_time": "2025-01-26T14:24:52",
            "upload_time_iso_8601": "2025-01-26T14:24:52.085811Z",
            "url": "https://files.pythonhosted.org/packages/51/56/bfae216ba56949d79ca458bf95a6db3733876b77279e258dd238adee1fd4/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de9155f06bf22c78fb1e6d84c1471ded61e86d2095cb9c22a94f33044113299c",
                "md5": "6983cb80cdb578170a5320f81c331edc",
                "sha256": "b54b9bf3927a2a5da739fd183ffd9b6cce431bf686d428333310a41cba000d73"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6983cb80cdb578170a5320f81c331edc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1020068,
            "upload_time": "2025-01-26T14:25:23",
            "upload_time_iso_8601": "2025-01-26T14:25:23.022349Z",
            "url": "https://files.pythonhosted.org/packages/de/91/55f06bf22c78fb1e6d84c1471ded61e86d2095cb9c22a94f33044113299c/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a04c6d51ea50340911d4744bf1d294c026ea90dcc4967cad92cedcc75b536b4",
                "md5": "758bdb984964cd03f8935c5ead3d749c",
                "sha256": "f6d09e8c1c8d1660f2d216dc4de2abbd56273bd6421ead9dcb3dea1ebcc03ce8"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "758bdb984964cd03f8935c5ead3d749c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1017324,
            "upload_time": "2025-01-26T14:25:05",
            "upload_time_iso_8601": "2025-01-26T14:25:05.806997Z",
            "url": "https://files.pythonhosted.org/packages/3a/04/c6d51ea50340911d4744bf1d294c026ea90dcc4967cad92cedcc75b536b4/djc_core_html_parser-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a939ff193c2f121b32b361871631f36ffcc3a0ef8ea8e135216c2bb1bcf03bf",
                "md5": "0af9865938cf1c2d917c9d238440a5cc",
                "sha256": "566b5107cffb74a3a52a771274b946dfeb76ae2ddc9e0bb9e20a3e184059e3f9"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0af9865938cf1c2d917c9d238440a5cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1170341,
            "upload_time": "2025-01-26T14:25:42",
            "upload_time_iso_8601": "2025-01-26T14:25:42.546192Z",
            "url": "https://files.pythonhosted.org/packages/3a/93/9ff193c2f121b32b361871631f36ffcc3a0ef8ea8e135216c2bb1bcf03bf/djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76d1e6354f8407b05ac383a2e14f72c51f613c343ed1668fecad31613903560b",
                "md5": "5b3d02e17a43d9b4ab8fbbd48b7e6db4",
                "sha256": "7080f0199f6e0903c285e3cac8c6bbf9b9958aa9abe653f94790da5c7ea738f8"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5b3d02e17a43d9b4ab8fbbd48b7e6db4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1264938,
            "upload_time": "2025-01-26T14:25:58",
            "upload_time_iso_8601": "2025-01-26T14:25:58.862827Z",
            "url": "https://files.pythonhosted.org/packages/76/d1/e6354f8407b05ac383a2e14f72c51f613c343ed1668fecad31613903560b/djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6c204d28680699cf2c61db2d13e407859b99567fbf17dc2cfa30b0be16f8660",
                "md5": "8db1a474101636fec1253208488dea92",
                "sha256": "9bfba7f2d99de3cca8a7c9cf7fc600eeb1228c558e37f3b1420b37ec2e897707"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8db1a474101636fec1253208488dea92",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1179108,
            "upload_time": "2025-01-26T14:26:14",
            "upload_time_iso_8601": "2025-01-26T14:26:14.864980Z",
            "url": "https://files.pythonhosted.org/packages/b6/c2/04d28680699cf2c61db2d13e407859b99567fbf17dc2cfa30b0be16f8660/djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c35ccadb7b82d766700ca7eac91bc4857e1094815c027e35d5b53cfff4820e92",
                "md5": "adfdb4f3211aeed2bf165505c4a41bd4",
                "sha256": "b2f90944ea20c089a2ec9601f6f53bc713ff1b42985e3875711a4900e04c38c8"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adfdb4f3211aeed2bf165505c4a41bd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1177614,
            "upload_time": "2025-01-26T14:26:33",
            "upload_time_iso_8601": "2025-01-26T14:26:33.412516Z",
            "url": "https://files.pythonhosted.org/packages/c3/5c/cadb7b82d766700ca7eac91bc4857e1094815c027e35d5b53cfff4820e92/djc_core_html_parser-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "066d5a75486d9e08395848ca392932c77619199d027a1ddaeed31036a97c420b",
                "md5": "ab33403e3b981c8a1b988a93958b5f17",
                "sha256": "8ee179464eefdf79d12f82a518a6362f4f72fdedbcb42b9c89fd55b6cfedaae7"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "ab33403e3b981c8a1b988a93958b5f17",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 132209,
            "upload_time": "2025-01-26T14:26:56",
            "upload_time_iso_8601": "2025-01-26T14:26:56.859416Z",
            "url": "https://files.pythonhosted.org/packages/06/6d/5a75486d9e08395848ca392932c77619199d027a1ddaeed31036a97c420b/djc_core_html_parser-1.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0d17acfb32f0b46567446a1159ee55a47488d52be1d110ef19b8968d965f1ed",
                "md5": "11a9a56f45b29d2e480237f8784ed17a",
                "sha256": "1976aca9748c8b1999c50bf9470e35a9ac4e718b0bfe52618d274f1747167b0b"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "11a9a56f45b29d2e480237f8784ed17a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.8",
            "size": 138357,
            "upload_time": "2025-01-26T14:26:50",
            "upload_time_iso_8601": "2025-01-26T14:26:50.616995Z",
            "url": "https://files.pythonhosted.org/packages/a0/d1/7acfb32f0b46567446a1159ee55a47488d52be1d110ef19b8968d965f1ed/djc_core_html_parser-1.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4be2da4c67823f9a0c3a36100d4009261a503cf9e99eb284ececd384aadb2384",
                "md5": "9e4509f2b8e43c3cab10b5366e72f213",
                "sha256": "2c1c768c7127e934b12d82a7bf9633ecb1233796d87352560557d7269ac9ce23"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e4509f2b8e43c3cab10b5366e72f213",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1006731,
            "upload_time": "2025-01-26T14:24:03",
            "upload_time_iso_8601": "2025-01-26T14:24:03.359098Z",
            "url": "https://files.pythonhosted.org/packages/4b/e2/da4c67823f9a0c3a36100d4009261a503cf9e99eb284ececd384aadb2384/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e828ad47e30077589d963a503bc4cc21c9c0be49d358f52b567c4fbf72490e76",
                "md5": "59b9087f629012e0150a76286eb6ed79",
                "sha256": "4329c45505d9e1e8686262fca6a88d2377b8782c28acef3f7e0887a855093c6c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "59b9087f629012e0150a76286eb6ed79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1015465,
            "upload_time": "2025-01-26T14:24:23",
            "upload_time_iso_8601": "2025-01-26T14:24:23.777358Z",
            "url": "https://files.pythonhosted.org/packages/e8/28/ad47e30077589d963a503bc4cc21c9c0be49d358f52b567c4fbf72490e76/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21d6c1577e949f735d7b1f9adc9ca303d1b7b44628e0bf847a53aa1a94801120",
                "md5": "bd1e7b25f443c897ec7726249d6dc484",
                "sha256": "58842bbff1593e01582a9cd7da31aca78eab362ea7a7d79e6b1f1228c55847aa"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bd1e7b25f443c897ec7726249d6dc484",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1018648,
            "upload_time": "2025-01-26T14:24:38",
            "upload_time_iso_8601": "2025-01-26T14:24:38.102640Z",
            "url": "https://files.pythonhosted.org/packages/21/d6/c1577e949f735d7b1f9adc9ca303d1b7b44628e0bf847a53aa1a94801120/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "570b4e440aaf1999576969a191383661d632551f4994f9cc319dd902c6b77743",
                "md5": "e8b55347b5af116f80cb2a841858bddf",
                "sha256": "30d957998d60b70435065ee5552742e1f8daabd4eb5c4da812a6f7537294476e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e8b55347b5af116f80cb2a841858bddf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1256999,
            "upload_time": "2025-01-26T14:24:53",
            "upload_time_iso_8601": "2025-01-26T14:24:53.553596Z",
            "url": "https://files.pythonhosted.org/packages/57/0b/4e440aaf1999576969a191383661d632551f4994f9cc319dd902c6b77743/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50080c356429dca850807d8556013a3b10c27bab5a2b88cada117c22a1c1ec52",
                "md5": "7839adcd0b7fde6847592c317d78ae63",
                "sha256": "cbea42749b4381c062fb3c964d500afaf1540e54c29d538bbe271b754f9d579a"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7839adcd0b7fde6847592c317d78ae63",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1019878,
            "upload_time": "2025-01-26T14:25:24",
            "upload_time_iso_8601": "2025-01-26T14:25:24.736294Z",
            "url": "https://files.pythonhosted.org/packages/50/08/0c356429dca850807d8556013a3b10c27bab5a2b88cada117c22a1c1ec52/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "deb2b4dc144373ae0dbbb18488e1771be9f5e7a3d79c5b8cb984e5e12995fd04",
                "md5": "46614bedebd09e7286dad49ec6a08929",
                "sha256": "522e2a8626ab8943b575a49a3ad6e1c95ed6c3aebc6a33e974104ccdac315b81"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "46614bedebd09e7286dad49ec6a08929",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1017020,
            "upload_time": "2025-01-26T14:25:12",
            "upload_time_iso_8601": "2025-01-26T14:25:12.661765Z",
            "url": "https://files.pythonhosted.org/packages/de/b2/b4dc144373ae0dbbb18488e1771be9f5e7a3d79c5b8cb984e5e12995fd04/djc_core_html_parser-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "314a87402e0176f6d7b74b5a3564a25b7f1277431d030f64b39a0fb3d568e9cf",
                "md5": "e8b29c06f9fa4b40f1426bb2a41bcf50",
                "sha256": "e5c7bb8c0287b5fbaf4b4a1645020d7adc769ce384483c219cc8305499618d58"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8b29c06f9fa4b40f1426bb2a41bcf50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1170085,
            "upload_time": "2025-01-26T14:25:44",
            "upload_time_iso_8601": "2025-01-26T14:25:44.848147Z",
            "url": "https://files.pythonhosted.org/packages/31/4a/87402e0176f6d7b74b5a3564a25b7f1277431d030f64b39a0fb3d568e9cf/djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f865e6f8def76750519f62fbeebc63547b1f08a1dbe6f2d54845a28dd39e6af",
                "md5": "899585f76cf1cb62ef18f4d82e31c9d2",
                "sha256": "9b5c1d5965acfb5c65f1f13bdf5427319880cced232a44dcf2156206efe1fa4a"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "899585f76cf1cb62ef18f4d82e31c9d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1264680,
            "upload_time": "2025-01-26T14:26:00",
            "upload_time_iso_8601": "2025-01-26T14:26:00.454791Z",
            "url": "https://files.pythonhosted.org/packages/9f/86/5e6f8def76750519f62fbeebc63547b1f08a1dbe6f2d54845a28dd39e6af/djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5e26793d872f672268bbba6a8054d131ab3666df79df8f3309045b7808f657c",
                "md5": "fdeb0d2112050ba4f19313bcde976e56",
                "sha256": "0a61309ff0019814af7b7fc019b6d55a44a599ff64c564789caf660e030429f5"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "fdeb0d2112050ba4f19313bcde976e56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1178817,
            "upload_time": "2025-01-26T14:26:16",
            "upload_time_iso_8601": "2025-01-26T14:26:16.257469Z",
            "url": "https://files.pythonhosted.org/packages/c5/e2/6793d872f672268bbba6a8054d131ab3666df79df8f3309045b7808f657c/djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aca19150d667ccf7245d8373ded2ab8f0ddd81e8fce583c10248709480acd96b",
                "md5": "2b585ea26f39da9d045ac7033759a846",
                "sha256": "a1d571bd7b7fcd077c8c08a89e4f92d9716a3d6ec0a7804fbd8fa3b88d98c843"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b585ea26f39da9d045ac7033759a846",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1177388,
            "upload_time": "2025-01-26T14:26:34",
            "upload_time_iso_8601": "2025-01-26T14:26:34.847859Z",
            "url": "https://files.pythonhosted.org/packages/ac/a1/9150d667ccf7245d8373ded2ab8f0ddd81e8fce583c10248709480acd96b/djc_core_html_parser-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92375357b0270b55e4beaed9dc779491450c4a7728297a73df4f6cc42e4ca3fb",
                "md5": "b99c994020f41668444042449ca8ff98",
                "sha256": "7a700259a5f73451ef2587db3b18817a90200945f9354cec705a5fb5fd4ec57c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b99c994020f41668444042449ca8ff98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 132243,
            "upload_time": "2025-01-26T14:26:57",
            "upload_time_iso_8601": "2025-01-26T14:26:57.907546Z",
            "url": "https://files.pythonhosted.org/packages/92/37/5357b0270b55e4beaed9dc779491450c4a7728297a73df4f6cc42e4ca3fb/djc_core_html_parser-1.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4aa13a522824169e1891bc730bb99c2e1b9a3daa7832a87978d1ba0bfea912b",
                "md5": "f4064164991e65562b4ebe968fc2e492",
                "sha256": "cb40037df77cb652454796092f13d5238f3274b10dcc630fdc4304812dda9d16"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f4064164991e65562b4ebe968fc2e492",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 138361,
            "upload_time": "2025-01-26T14:26:51",
            "upload_time_iso_8601": "2025-01-26T14:26:51.765824Z",
            "url": "https://files.pythonhosted.org/packages/f4/aa/13a522824169e1891bc730bb99c2e1b9a3daa7832a87978d1ba0bfea912b/djc_core_html_parser-1.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cc457b973c1ae8a25cb85185ceb12c3395223fd0d4826ab2333016b5ea1dac0",
                "md5": "db34f07e9c05cdfd9ecf9ec5e546d7cf",
                "sha256": "5ed313d5547abdc4ceb5269734e51ad42408c87d57d8a1a86f25615d670f819c"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db34f07e9c05cdfd9ecf9ec5e546d7cf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1007987,
            "upload_time": "2025-01-26T14:24:04",
            "upload_time_iso_8601": "2025-01-26T14:24:04.825152Z",
            "url": "https://files.pythonhosted.org/packages/2c/c4/57b973c1ae8a25cb85185ceb12c3395223fd0d4826ab2333016b5ea1dac0/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "027f60e54bf2aba9118d8a3ba34be8b5d5001cf43bb7441889a479b3afe67ec8",
                "md5": "69bac4e97420dd5f874b64c43563392f",
                "sha256": "437df8f55081b9dda1f7ab9e26d164f5deffe0c19695013677402c34a9d91011"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "69bac4e97420dd5f874b64c43563392f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1016932,
            "upload_time": "2025-01-26T14:24:25",
            "upload_time_iso_8601": "2025-01-26T14:24:25.167934Z",
            "url": "https://files.pythonhosted.org/packages/02/7f/60e54bf2aba9118d8a3ba34be8b5d5001cf43bb7441889a479b3afe67ec8/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29ee618ad1adbcabe478f4cc550633a98050107764113c42916a820f38df2de8",
                "md5": "921ceebcbd374ac18d7a8d2fd58d11fa",
                "sha256": "92175884b4386c17de4547ea9805524f5c9cd5bbaaf8b2749ce426de0e7d9eb8"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "921ceebcbd374ac18d7a8d2fd58d11fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1019986,
            "upload_time": "2025-01-26T14:24:40",
            "upload_time_iso_8601": "2025-01-26T14:24:40.400804Z",
            "url": "https://files.pythonhosted.org/packages/29/ee/618ad1adbcabe478f4cc550633a98050107764113c42916a820f38df2de8/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d28e2313ec34447c8fb2953b381b27e35d66972757997235f6da3b37ab3822af",
                "md5": "f4ca48e7dbf939af09242970fe2f9445",
                "sha256": "4ebce02fcf33ced96ac14003d08f3ce9d5d24273c9e74b4319b4897b3e9cf533"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f4ca48e7dbf939af09242970fe2f9445",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1261688,
            "upload_time": "2025-01-26T14:24:55",
            "upload_time_iso_8601": "2025-01-26T14:24:55.021945Z",
            "url": "https://files.pythonhosted.org/packages/d2/8e/2313ec34447c8fb2953b381b27e35d66972757997235f6da3b37ab3822af/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7984eb8fa8e3d5733300e488a429b40b4f8f9bedb9958a33ccd3931a1c9d3eef",
                "md5": "e1fe2ab652fcbef495a70b7948fd96c0",
                "sha256": "460eed6a7e814020ecce011e1724d1809072c40c16cb958bed1656b848fe58d1"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1fe2ab652fcbef495a70b7948fd96c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1020249,
            "upload_time": "2025-01-26T14:25:26",
            "upload_time_iso_8601": "2025-01-26T14:25:26.173818Z",
            "url": "https://files.pythonhosted.org/packages/79/84/eb8fa8e3d5733300e488a429b40b4f8f9bedb9958a33ccd3931a1c9d3eef/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c299d65b991087d6ed3f45897e0307b8d265c037f1eef484e440e325e3f9649c",
                "md5": "ba9a566f9fe0f0d5c1eb69021c7c1fb3",
                "sha256": "c40fe2b522a941f2bd7e8fdf8e5c830ecce55a369727879df749886410a47781"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ba9a566f9fe0f0d5c1eb69021c7c1fb3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1017248,
            "upload_time": "2025-01-26T14:25:14",
            "upload_time_iso_8601": "2025-01-26T14:25:14.749276Z",
            "url": "https://files.pythonhosted.org/packages/c2/99/d65b991087d6ed3f45897e0307b8d265c037f1eef484e440e325e3f9649c/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3725722ddeddb33b03ea04ebd00d3634065ef187bf4acdcf0cda133ec9ae668d",
                "md5": "56c55b4b45ee61d31f030215f10ec216",
                "sha256": "efdc4c00c6a4d8bcaba0d29cad60b28a6e4cfe4a4d8fc10c477cd1bf4d658088"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56c55b4b45ee61d31f030215f10ec216",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1170718,
            "upload_time": "2025-01-26T14:25:47",
            "upload_time_iso_8601": "2025-01-26T14:25:47.075059Z",
            "url": "https://files.pythonhosted.org/packages/37/25/722ddeddb33b03ea04ebd00d3634065ef187bf4acdcf0cda133ec9ae668d/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "195605df59315d34abc5cb2fb8f69f5e6e44e9fbdc65b13abf5e46dbfaa2827d",
                "md5": "0717b8750d0c9ea222339a647cf7df76",
                "sha256": "37ccfc1d390c013c4ba41da1df03f9783476a08da45466d28371ccb793447bac"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0717b8750d0c9ea222339a647cf7df76",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1265772,
            "upload_time": "2025-01-26T14:26:02",
            "upload_time_iso_8601": "2025-01-26T14:26:02.794604Z",
            "url": "https://files.pythonhosted.org/packages/19/56/05df59315d34abc5cb2fb8f69f5e6e44e9fbdc65b13abf5e46dbfaa2827d/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "021aa873fb459e1dafe14d8fdbc298bc29ea7ccc2954ab7dd72e2501c7fb7da0",
                "md5": "682c567b7ffb59b9f20814111821927c",
                "sha256": "62c792229d69a85723887acee758bc7d46ccc0d0dc9cdc3a8164afa04d3eeea6"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "682c567b7ffb59b9f20814111821927c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1177567,
            "upload_time": "2025-01-26T14:26:17",
            "upload_time_iso_8601": "2025-01-26T14:26:17.747760Z",
            "url": "https://files.pythonhosted.org/packages/02/1a/a873fb459e1dafe14d8fdbc298bc29ea7ccc2954ab7dd72e2501c7fb7da0/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be6e638a42ceca3a305524b02283fd1fd199a4a6942799e0671b6977a0e16fab",
                "md5": "2ff37484e6509a41ee6c05db2c70dea2",
                "sha256": "4729592aaeaf70abe122de2a7e491ea7d0b22bd4b7798b154c6e2b71edf97cab"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ff37484e6509a41ee6c05db2c70dea2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<4.0,>=3.8",
            "size": 1177569,
            "upload_time": "2025-01-26T14:26:36",
            "upload_time_iso_8601": "2025-01-26T14:26:36.718246Z",
            "url": "https://files.pythonhosted.org/packages/be/6e/638a42ceca3a305524b02283fd1fd199a4a6942799e0671b6977a0e16fab/djc_core_html_parser-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "450fd6b3a6d063b475c85de09d17710228e74f587690bb9c220f8f421d8013c9",
                "md5": "bb228658ff54dd66ca5fe607027b14d3",
                "sha256": "28679b80313626f1bbbe84a815adae55390f0d44ab2249d7993d1eaa6f99c867"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb228658ff54dd66ca5fe607027b14d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1007848,
            "upload_time": "2025-01-26T14:24:07",
            "upload_time_iso_8601": "2025-01-26T14:24:07.015997Z",
            "url": "https://files.pythonhosted.org/packages/45/0f/d6b3a6d063b475c85de09d17710228e74f587690bb9c220f8f421d8013c9/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b539378b25b4ff96e618f81288e98b69f43bd6ce9363c30168490c7c40ad358",
                "md5": "6015e489495db350df7b546a418e070d",
                "sha256": "7c47b1b907b815576f21a249b539c7ac494d7f2cda296df417a9a0edefa068ef"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6015e489495db350df7b546a418e070d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1016789,
            "upload_time": "2025-01-26T14:24:26",
            "upload_time_iso_8601": "2025-01-26T14:24:26.612716Z",
            "url": "https://files.pythonhosted.org/packages/9b/53/9378b25b4ff96e618f81288e98b69f43bd6ce9363c30168490c7c40ad358/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbe7b1843eae843d46641988aafa61c0c38a1ccac2bffb7e5d81ec6b4691f0fb",
                "md5": "a7cdeb7b9a36b1c1a6d09889a361b442",
                "sha256": "8ca76e6b39e859fb2bd305d666d727f678e7894ed0c4aaace9cd94bda1aaa055"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a7cdeb7b9a36b1c1a6d09889a361b442",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1019930,
            "upload_time": "2025-01-26T14:24:41",
            "upload_time_iso_8601": "2025-01-26T14:24:41.769437Z",
            "url": "https://files.pythonhosted.org/packages/db/e7/b1843eae843d46641988aafa61c0c38a1ccac2bffb7e5d81ec6b4691f0fb/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d5d57e793c693538bb1edd2d3b9e2188a3f11a40e20375b6c413ff22d4e8f70",
                "md5": "c7acb641270ec26f84a236b2bea8e258",
                "sha256": "a67c2e9a0f90c32b599f40386a49e4b98dabf62cc982a28c71c19d95eb53f5f7"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c7acb641270ec26f84a236b2bea8e258",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1261546,
            "upload_time": "2025-01-26T14:24:56",
            "upload_time_iso_8601": "2025-01-26T14:24:56.559213Z",
            "url": "https://files.pythonhosted.org/packages/1d/5d/57e793c693538bb1edd2d3b9e2188a3f11a40e20375b6c413ff22d4e8f70/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2198661bc1c78e91c7a6d31d689e1004600eef7ce7a09c047354f16de646359b",
                "md5": "29c2f277e66845cc0978e868cad4dcdd",
                "sha256": "773253abfe08ca3dd2eabed974fe444a9fc6728b760eea92324885f27b51a0b2"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "29c2f277e66845cc0978e868cad4dcdd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1170769,
            "upload_time": "2025-01-26T14:25:48",
            "upload_time_iso_8601": "2025-01-26T14:25:48.930702Z",
            "url": "https://files.pythonhosted.org/packages/21/98/661bc1c78e91c7a6d31d689e1004600eef7ce7a09c047354f16de646359b/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89652cc1c8fa849f14c1a9bdc40e65386a98a815ea36f806d8c39f61b5ca4461",
                "md5": "5047ffc7c282ad1e3c3ec62fc782d3d9",
                "sha256": "2a0b70dcd92db4a306a3cb64f374d4cce3351a1408f45dc6c483848a3a270709"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5047ffc7c282ad1e3c3ec62fc782d3d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1265806,
            "upload_time": "2025-01-26T14:26:04",
            "upload_time_iso_8601": "2025-01-26T14:26:04.783055Z",
            "url": "https://files.pythonhosted.org/packages/89/65/2cc1c8fa849f14c1a9bdc40e65386a98a815ea36f806d8c39f61b5ca4461/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6070fc5190c129b2e906a895b7a254bc88c602069b6156b505d01b88bfe3ce3d",
                "md5": "1bde0cff84489d557c34a7de78037809",
                "sha256": "6e3a90e5af77e67e2a3740242a9d3aa9dff0d8a0066711b9da16669c53c3b980"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1bde0cff84489d557c34a7de78037809",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1177614,
            "upload_time": "2025-01-26T14:26:19",
            "upload_time_iso_8601": "2025-01-26T14:26:19.914917Z",
            "url": "https://files.pythonhosted.org/packages/60/70/fc5190c129b2e906a895b7a254bc88c602069b6156b505d01b88bfe3ce3d/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92250cf93b43d9050585d184daa9e18bd3a453b0d2227e4b5e501681c3a61472",
                "md5": "503a881b44cfcf6fa6fa97aaeeeab215",
                "sha256": "3388c0e3915d4bb4b3d0011ab74b6843006fb8ce4514403a90bb036699f21f1e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "503a881b44cfcf6fa6fa97aaeeeab215",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<4.0,>=3.8",
            "size": 1177506,
            "upload_time": "2025-01-26T14:26:38",
            "upload_time_iso_8601": "2025-01-26T14:26:38.931738Z",
            "url": "https://files.pythonhosted.org/packages/92/25/0cf93b43d9050585d184daa9e18bd3a453b0d2227e4b5e501681c3a61472/djc_core_html_parser-1.0.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49fded3cc230097f0198f5a02a6f4bca24f5ef858975da96b04289963776d36f",
                "md5": "f4d07bd184cf00221028703df1deaa2a",
                "sha256": "f51bffb947cf3ca6d505edde45ab5454514f5903c34a7f30fac2ad8d7e156f19"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4d07bd184cf00221028703df1deaa2a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1007923,
            "upload_time": "2025-01-26T14:24:11",
            "upload_time_iso_8601": "2025-01-26T14:24:11.274194Z",
            "url": "https://files.pythonhosted.org/packages/49/fd/ed3cc230097f0198f5a02a6f4bca24f5ef858975da96b04289963776d36f/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "418b6ca212f31297e43942cef8667f95dd9f9741fb11f3b27f62a6ef6c2c3a1e",
                "md5": "cfbe7cad9915da0a885eb1ac6a744092",
                "sha256": "876d319eeccda5b64ce909b421e52703e7cd7f94d6d4b681fdf2272371b2f270"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cfbe7cad9915da0a885eb1ac6a744092",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1017003,
            "upload_time": "2025-01-26T14:24:28",
            "upload_time_iso_8601": "2025-01-26T14:24:28.015855Z",
            "url": "https://files.pythonhosted.org/packages/41/8b/6ca212f31297e43942cef8667f95dd9f9741fb11f3b27f62a6ef6c2c3a1e/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0cef0b0b8d81d8739eab636e4e6158021c54d5fbaa089da5710ba3d877af214",
                "md5": "b480fbe88883c483a22d2d426b7f8e2b",
                "sha256": "bc7dbd9d82a53d3fe97567ceb6bbff15aac8e99daec13698c4016371667af0f1"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b480fbe88883c483a22d2d426b7f8e2b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1020109,
            "upload_time": "2025-01-26T14:24:43",
            "upload_time_iso_8601": "2025-01-26T14:24:43.185109Z",
            "url": "https://files.pythonhosted.org/packages/c0/ce/f0b0b8d81d8739eab636e4e6158021c54d5fbaa089da5710ba3d877af214/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03586dd2aa7fd407b5eae29fcc91a2275b6a748610a71199bace02d71e341357",
                "md5": "3a71f87296c26c018f2860e6e4a6b3c2",
                "sha256": "aaa87b4e5e2592ef2bc5ec527123e1cda1b52adf00897a3f1606dc2a9bc6ad27"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3a71f87296c26c018f2860e6e4a6b3c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1261681,
            "upload_time": "2025-01-26T14:24:58",
            "upload_time_iso_8601": "2025-01-26T14:24:58.022944Z",
            "url": "https://files.pythonhosted.org/packages/03/58/6dd2aa7fd407b5eae29fcc91a2275b6a748610a71199bace02d71e341357/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ae44d5cf39ecf35bc18668303bb463495e06e767e1bd9b55a61e2ceccad37f8",
                "md5": "0db108e57c03f5ead91c2c4c8467b226",
                "sha256": "1844aab7eaafd989c1daebcbdb13a04ee76820758223148ea96bdd3ab7c86649"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0db108e57c03f5ead91c2c4c8467b226",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1170775,
            "upload_time": "2025-01-26T14:25:51",
            "upload_time_iso_8601": "2025-01-26T14:25:51.310349Z",
            "url": "https://files.pythonhosted.org/packages/6a/e4/4d5cf39ecf35bc18668303bb463495e06e767e1bd9b55a61e2ceccad37f8/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee47e4f292ba79321959b1b687060c4178aa0db6341b5058ea28b23a0f7b8618",
                "md5": "7631e4962530902c633d27cc23d0d052",
                "sha256": "0134deb1ca7b575029430cbb47096ee7f448968379fcd27a90b16eba12baa19e"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7631e4962530902c633d27cc23d0d052",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1265885,
            "upload_time": "2025-01-26T14:26:06",
            "upload_time_iso_8601": "2025-01-26T14:26:06.936383Z",
            "url": "https://files.pythonhosted.org/packages/ee/47/e4f292ba79321959b1b687060c4178aa0db6341b5058ea28b23a0f7b8618/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "717a6dee2ce43c82be08b5c011d1a2db3d69a4e5c5cdf9921e6cadb95fd9aac4",
                "md5": "3dc1411096828fd08ae2f28e928321eb",
                "sha256": "952b65586b9dd2be41cb4616b42bdcf5a2e12bcf99dcc3d5faeb395cf8efb98b"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3dc1411096828fd08ae2f28e928321eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1177536,
            "upload_time": "2025-01-26T14:26:21",
            "upload_time_iso_8601": "2025-01-26T14:26:21.314600Z",
            "url": "https://files.pythonhosted.org/packages/71/7a/6dee2ce43c82be08b5c011d1a2db3d69a4e5c5cdf9921e6cadb95fd9aac4/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3a4f3db2ec7334aaafc593b1bd1d9297cfcd84612f12d81ab3c70caa42feb75",
                "md5": "fd5c5ec472e19cc5488da34f8bcd2142",
                "sha256": "1cffafcbd0273f647ba7029b60b3b78d3ba24d50efd0e7e29b870425e1172753"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd5c5ec472e19cc5488da34f8bcd2142",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<4.0,>=3.8",
            "size": 1177499,
            "upload_time": "2025-01-26T14:26:41",
            "upload_time_iso_8601": "2025-01-26T14:26:41.538687Z",
            "url": "https://files.pythonhosted.org/packages/f3/a4/f3db2ec7334aaafc593b1bd1d9297cfcd84612f12d81ab3c70caa42feb75/djc_core_html_parser-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23627ffd25bbbcf6bd94f628b06d93e85921842c9d3334c4a6fafd04c8358573",
                "md5": "6eaa28b288c8f945a7528a9489a43791",
                "sha256": "d625b078b763171535eaa3a19070b33cbbba1d867623ea61cd8ba093cb538ada"
            },
            "downloads": -1,
            "filename": "djc_core_html_parser-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6eaa28b288c8f945a7528a9489a43791",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 16948,
            "upload_time": "2025-01-26T14:26:43",
            "upload_time_iso_8601": "2025-01-26T14:26:43.668739Z",
            "url": "https://files.pythonhosted.org/packages/23/62/7ffd25bbbcf6bd94f628b06d93e85921842c9d3334c4a6fafd04c8358573/djc_core_html_parser-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-26 14:26:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "django-components",
    "github_project": "djc-core-html-parser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "djc-core-html-parser"
}
        
Elapsed time: 1.80021s