Skip to main content

Tree-Edit-Distance Score metric

Project description

Docling metric for the Tree-Edit-Distance Score

This is an optimized implementation of the Tree Edit Distance Score.

Overview

Main features:

  • Python bindings.
  • Docling API.

This repo builds on top of the tree-similarity

Directory structure

Before building the C++ code, we have only the source code directories:

.
├── devtools              # Various bash scripts, useful with C++ development
├── cmake                 # Cmake files required to compile the C++ code.
├── cpp_src               # C++ source code
├── cpp_tests             # C++ source code for the test
├── docling_metrics_table   # Python wrapper for the C++ bindings that implements the docling-metrics-core API
└── test                  # Python tests

After building the C++ code we have the following directories:

.
├── build                  # C++ build directory required during the build process
├── cmake
├── cpp_src
├── cpp_test
├── docling_metrics_table
├── externals              # C++ code of external libraries. Required during the compilation.
└── tests

Installation

All C++ and Python code is managed by uv. The following command starts the workflow that:

  1. Installs all Python dependencies.
  2. Builds the C++ code including the C++ external dependencies.
  3. Installs the *.so file with the python bindings inside the uv venv.
uv sync --all-packages

In case a manual compilation of the C++ code is needed, you can use the bash scripts from devtools/:

Build the C++ code:

devtools/build_cpp.sh

Run the native C++ tests:

devtools/test_cpp.sh

Usage

from docling_metrics_table import (
    TableMetric,
    TableMetricBracketInputSample,
    TableMetricHTMLInputSample,
    TableMetricSampleEvaluation,
)


# Input sample in bracket notation
bracket_sample = TableMetricBracketInputSample(
    id="s1",
    bracket_a="{x{a}{b}}",
    bracket_b="{x{a}{c}}",
)

table_metric = TableMetric()
bracket_sample_evaluation: TableMetricSampleEvaluation = table_metric.evaluate_sample(
    bracket_sample
)
print(f"TEDS with bracket input: {bracket_sample_evaluation}")


# Input sample in HTML notation
html_a= r"""
<table>
    <tr>
        <td colspan="2">This cell spans two columns with some dummy text</td>
    </tr>
    <tr>
        <td>Cell 2-1: More dummy text here</td>
        <td>Cell 2-2: Additional content</td>
    </tr>
</table>
"""

html_b = r"""
<table>
    <tr>
        <td>Dummy text</td>
        <td>Cell 1-2: Regular cell content</td>
    </tr>
    <tr>
        <td>Cell 2-1: More dummy text here</td>
        <td>Cell 2-2: Additional content</td>
    </tr>
</table>
"""

html_sample = TableMetricHTMLInputSample(
    id="s1",
    html_a=html_a,
    html_b=html_b,
    structure_only=False,
)
html_evaluation: TableMetricSampleEvaluation = table_metric.evaluate_sample(html_sample)
print(f"TEDS with HTML input: {html_evaluation}")

Links

tree-similarity

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docling_metrics_table-0.7.0.tar.gz (483.7 kB view details)

Uploaded Source

Built Distributions

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

docling_metrics_table-0.7.0-cp313-cp313-win_arm64.whl (226.3 kB view details)

Uploaded CPython 3.13Windows ARM64

docling_metrics_table-0.7.0-cp313-cp313-win_amd64.whl (243.0 kB view details)

Uploaded CPython 3.13Windows x86-64

docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (331.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (304.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

docling_metrics_table-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (234.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

docling_metrics_table-0.7.0-cp312-cp312-win_arm64.whl (226.4 kB view details)

Uploaded CPython 3.12Windows ARM64

docling_metrics_table-0.7.0-cp312-cp312-win_amd64.whl (243.0 kB view details)

Uploaded CPython 3.12Windows x86-64

docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (331.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (304.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

docling_metrics_table-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (234.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

docling_metrics_table-0.7.0-cp311-cp311-win_arm64.whl (225.8 kB view details)

Uploaded CPython 3.11Windows ARM64

docling_metrics_table-0.7.0-cp311-cp311-win_amd64.whl (242.2 kB view details)

Uploaded CPython 3.11Windows x86-64

docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (331.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (303.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

docling_metrics_table-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (234.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

docling_metrics_table-0.7.0-cp310-cp310-win_arm64.whl (225.2 kB view details)

Uploaded CPython 3.10Windows ARM64

docling_metrics_table-0.7.0-cp310-cp310-win_amd64.whl (241.6 kB view details)

Uploaded CPython 3.10Windows x86-64

docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (329.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (302.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

docling_metrics_table-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (233.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file docling_metrics_table-0.7.0.tar.gz.

File metadata

  • Download URL: docling_metrics_table-0.7.0.tar.gz
  • Upload date:
  • Size: 483.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for docling_metrics_table-0.7.0.tar.gz
Algorithm Hash digest
SHA256 7563f008effe72d466cbbab2f8e66e45332f00558c1858d45de927fd58f074c2
MD5 5a93c3c391242a1a172cddaf8287b22b
BLAKE2b-256 d238df2225d55f39f1c4b6045d912440019cb197996565c92c7088a964a285ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0.tar.gz:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2fe1df8ddaf351b1b9ca35455c2eee35e674a07ad568a3f9e02adf9271807e91
MD5 87a7a0b2fc7291f6ba99c87e44a990ae
BLAKE2b-256 853cc52cf60621ac859dddfa6ec550e6d7f2d2e8ee146755b0a6c5d41483bb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-win_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd50a4effca3ff819861c75a0edd1bcf6e657ee433a0b71ae09de3e9c01e4241
MD5 549c043caedd74bf0939523090391c17
BLAKE2b-256 34d17d902a6aaef20d63f0c530d770d19adaaaf5f4214ec22fa33c89cde4c1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f070e66b91822ff6cce507891135c9780b8f65c53df9c6f6a7478ffba20482dc
MD5 dcf7e5d5916f3d9bbcda217926e0e387
BLAKE2b-256 daf8f739fe2436b9ee1f7932151e097282136ad409bc2ed168e2ada7d530e7f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6c684985d1bd172622190fb4fc986193615a62f054f00fd93c819edf62fa43b
MD5 db20e6afcff04889e20ea9ec096bc2d7
BLAKE2b-256 13195ca345a5fea0a11951240382bbf71482f4e5fa3beae65021479ac8c05bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6c43b80f7d5ce4e75b4e23b170db3b7973127ad421f36cdf2a230b7256e502b
MD5 30bd5a46579bc8033b6953e22794701b
BLAKE2b-256 de037effd57741a8d8c78ad90cc294f4c7eaf26c3ebd14bc1dee31c9335c35a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb95bf238f72feb22053c40af9cbb68d7fad6a51005fb3dbd7b967e84b995c99
MD5 13c3e0c19f01f4c34b1009b3952551ae
BLAKE2b-256 175b577f507815fb9a474cf68e21064989de0fa7f9e11a219d91bc18fa7d1bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6bbf07d73472d89f5735894e0d82bcda888cbafc189e8b7dffcb926b17770b5
MD5 329fb52e2339fdea1bea47778fed7cc4
BLAKE2b-256 e5281c63491144185904cb340a3fb3d6eb1890156781fa115297c781d4c3cf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 48af7c37aa3e59820ddf1254d033760786f8983228d69b0d0409cdc938b27b6d
MD5 294d68a9d8a55dd36067e6ca822f5bbb
BLAKE2b-256 77bd80fefb62ff1ff506fb40eb6fd2d1d4949596366b8225e5e4d18f2606ccd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-win_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 11738acba9744d12b5b182dc54707c7b76cb50465aebe8cb03f607ae6f1cbd1b
MD5 8fa34f8c65ad3943a1f81f1c59e715c2
BLAKE2b-256 970cf2f24d42c70f28fe228db510d34727363dc83676f733260ea0b11c7e5f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 417773e4c0e2765d01d1130d96f825c36ce167d0fb13d5135cd0adb6398739dc
MD5 a007d2b55149712fefceebc6ba298996
BLAKE2b-256 3749d911f0fb606a1124135332c28add5b92d9a54e80477b863accd06daec25b

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e065450a578b93cfc4ba7164243ddfdeb71cd003a97865fc9f16d883a3da38e7
MD5 f2e75682ba9e765d158dd96c77f0267e
BLAKE2b-256 1cb51f770715f008f8f0971cbd2cef77098c2ffde103698b33828b14ec81caf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01069b1ef004911323ac8f541ccc9477be7a2282813c443d1e1ff1b1bcd0649a
MD5 bebeee456286c8b70868b8ea3f1ed3e8
BLAKE2b-256 14edc793e9f01abab2095b43b98c820a704a63820a87d0afc511ff9b0f05ea8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93e542ea02e8516f984d832b59e2630a2777d8f3754ce8d77e7a209fa6072f14
MD5 3727e24ca791c466e256e4bf4739c246
BLAKE2b-256 ec1efd0b9ff190b3a596713d70764d6edf4feb8e356eb794bb7e5e2f01a5cd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4eb89c40dc11d9f9c62afb77313d7dea6c28dce1870748709f465e329515476
MD5 950b64a2d0a0ddb9d2fae226c3de49f2
BLAKE2b-256 2523fa80c39cc1bff94c9d5e1b75e3c3ef41d2eab46931cf6574e4dd1849f586

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a61e4f64235ca27917db6ec4d48f68bc106066246c68e4eb7cf4583801351990
MD5 566a15adfc567c7eaff1ee64646e84a8
BLAKE2b-256 c1d848ffdabb396c288fb37aa6d6ac5ee846d7db359a94234efb5f6fd8e29f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-win_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eda9a6b58c7b7c6441fa6416355ebe27eba92cd209b771b5f5aa5c6fe3ceccab
MD5 01cefae66725f82a326357230215c5c8
BLAKE2b-256 4ad72398e83168464330001c38338d53b5039b1be8c5b73ee68f57d29123c82a

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65d560d95aecfca7f67d431e2e0400fe8be7b0020080def56ee062bd3425fc26
MD5 3ee6c0de9da3c2c95f7aec8d6b2e2d32
BLAKE2b-256 65a4ca547d46144f50c1c522b975c8e7f038cc782fbe24e61e39893251b0e3c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fd64cee0b2d4f6f88fbd4b738cc2e9c1aa1c70b03cf385437cf0d8523938c26
MD5 1f0dc16fabc18565398bdc834669f56f
BLAKE2b-256 46e74eb9e011dcc3c929119081ed99464888b12e39257c381eeb3e86877bedb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42dda9661576aaa247971364ef12d10517f71a824f32e05904a92c18eba6fce1
MD5 f3eef1edaa33e18c2a44153dfc8d2b0c
BLAKE2b-256 fc108c0dd7da888160b39fe83878ae46d6e5fb2eeb10949e68b30fb3cb8376c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72fe82af1db814472b546536935aff748f0bcb1212d36bcc6b3e117cd307d1a3
MD5 f695846df377574f39ae5302dbdace57
BLAKE2b-256 45f14da8eeafafb68b8c2c50b41f3a8e1dad2304e4ed423e75b6602a9ce4df5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddf3f9b40a9c3b774325dbe378bf7f5ff95ef99c79a0f062f653b36606899a3f
MD5 e72386b6086faa4763204786dc8966c8
BLAKE2b-256 9b108a3cff1d0c6bc913544767ec2b3bbcbd069009da56f397f71e7d234eccf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c0d8f07f8eb4e052654b957974c07900bd0341a041531f9ff1253006bf2d9483
MD5 461b21cd03b62f75bcf49b811ef5a41e
BLAKE2b-256 b8865f6ed22dc6abc62362698dbb7bd4d283aff77b66f352ddcc4532b45e5e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-win_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 215966eb02db1cd40508f12236a4c460ebd5c83ae2ada22df09da327b609f7fd
MD5 005b39e33e3473d29d0fa50e456dcd95
BLAKE2b-256 2c0689a1263cda3924178a4664e3e823b8b68189cd5a6dcde299be7254564279

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95710610cf94408064c7081d42c904f0651d76de6c5f9208032ec6146484ab3d
MD5 f5fcd9edd3da798fb5e209261c6d96e2
BLAKE2b-256 4d950ae7b06da3812808216e4c7f77785bce55ae5c4ef74957b6a8fe6326ab79

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acdd092b76f3a2b0064d4b6a0980aac1f8b1677ba4b770c2cd9d53aafe85ea59
MD5 6ac283bed3fd48b0f6c2c8790655a61c
BLAKE2b-256 332d4cc3392a80fd8de71975a50d24662766a303d19e74ca314d6ba50c56f3a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86ed7ada2ea10750b42755c818b8c49ca4b81b2bfd01e2e512506135e3c6a97b
MD5 7dbe24b0a82d4e4d91da7fdf5c8377f7
BLAKE2b-256 ae213d804e36905134c5f28298c90bb9359a013da15b556fd6bf4111dfc07e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 880e91bd6a6ca02a33d89e29c61510f4033d0675ddf8cdf357e9a75059184f46
MD5 e9b37d93c41d7b2a6c1ab5a3d4675ee9
BLAKE2b-256 cc9dafe7fb2b960b7ccc750bdbc8120967279b9de3fdf178368a94af15377a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file docling_metrics_table-0.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 900810376f5db6190cad2ddd06264cf7b8a404bd29763932ae4f9a00e30436f5
MD5 78d36e4c90576f58570630b679133157
BLAKE2b-256 3bb01c11edec7372f400a44e5ae9e100595fbecd62e502ae77822e108d93ab4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on docling-project/docling-metrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page