Skip to main content

Docling metrics for document tables

Docling metrics for document tables.

Overview

The following metrics are used:

  • Tree Edit Distance.
  • GriTS (coming).
**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

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.16.0.tar.gz (604.3 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.16.0-cp314-cp314-win_arm64.whl (254.5 kB view details)

Uploaded CPython 3.14Windows ARM64

docling_metrics_table-0.16.0-cp314-cp314-win_amd64.whl (283.4 kB view details)

Uploaded CPython 3.14Windows x86-64

docling_metrics_table-0.16.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

docling_metrics_table-0.16.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

docling_metrics_table-0.16.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (355.1 kB view details)

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

docling_metrics_table-0.16.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (325.5 kB view details)

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

docling_metrics_table-0.16.0-cp314-cp314-macosx_11_0_arm64.whl (255.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

docling_metrics_table-0.16.0-cp313-cp313-win_arm64.whl (247.1 kB view details)

Uploaded CPython 3.13Windows ARM64

docling_metrics_table-0.16.0-cp313-cp313-win_amd64.whl (276.3 kB view details)

Uploaded CPython 3.13Windows x86-64

docling_metrics_table-0.16.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.16.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.16.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (354.8 kB view details)

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

docling_metrics_table-0.16.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (325.2 kB view details)

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

docling_metrics_table-0.16.0-cp313-cp313-macosx_11_0_arm64.whl (254.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

docling_metrics_table-0.16.0-cp312-cp312-win_arm64.whl (247.1 kB view details)

Uploaded CPython 3.12Windows ARM64

docling_metrics_table-0.16.0-cp312-cp312-win_amd64.whl (276.3 kB view details)

Uploaded CPython 3.12Windows x86-64

docling_metrics_table-0.16.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.16.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.16.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (354.8 kB view details)

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

docling_metrics_table-0.16.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (325.2 kB view details)

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

docling_metrics_table-0.16.0-cp312-cp312-macosx_11_0_arm64.whl (254.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

docling_metrics_table-0.16.0-cp311-cp311-win_arm64.whl (246.4 kB view details)

Uploaded CPython 3.11Windows ARM64

docling_metrics_table-0.16.0-cp311-cp311-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.11Windows x86-64

docling_metrics_table-0.16.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.16.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.16.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (354.4 kB view details)

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

docling_metrics_table-0.16.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (324.6 kB view details)

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

docling_metrics_table-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (254.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

docling_metrics_table-0.16.0-cp310-cp310-win_arm64.whl (245.8 kB view details)

Uploaded CPython 3.10Windows ARM64

docling_metrics_table-0.16.0-cp310-cp310-win_amd64.whl (273.9 kB view details)

Uploaded CPython 3.10Windows x86-64

docling_metrics_table-0.16.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.16.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.16.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (353.2 kB view details)

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

docling_metrics_table-0.16.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (323.6 kB view details)

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

docling_metrics_table-0.16.0-cp310-cp310-macosx_11_0_arm64.whl (253.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: docling_metrics_table-0.16.0.tar.gz
  • Upload date:
  • Size: 604.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for docling_metrics_table-0.16.0.tar.gz
Algorithm Hash digest
SHA256 6a8707d1078bbf4d6551fbdb14693141cab487572cdaa0f02ccf45dff833972f
MD5 fcc85158e10d8d9666fd9bf527cbc34d
BLAKE2b-256 2a82b0cd2b8133d6d771c62eed0206b6a9467447f68897830b4e5a6fb6ad04a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2fad132adf7f68ddf16f2eaac5324beeef771fc0b9a8bbee74423ed6875194bf
MD5 76aad113657466d87acf1e7215357c7b
BLAKE2b-256 dec00cd318e2f0d5f50dc53530c7a4ac11e4f3aa14564c23c7d09fa1e7bd056a

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 59c57ded63f52684f3d2156fe28a890e8f3224a7e2f3c28d5cb365e802927be4
MD5 4c9156c5f2b2b2c3aca7b865295b4c9a
BLAKE2b-256 1cd4cb0326aa4fb4e2651f0ca5978e0cb693d7c0e687e94c2d951464ecdecbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89a94cb632a40561acabeb639c2ad44bede0b8ef103063c6559e19d13b980048
MD5 985018bbe89e75cce29ca96ca0b3bcf7
BLAKE2b-256 8082caed001d2f49447d9ac074eae48722130203e101a3e9087a65a3192d1e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 411d3f93dfc6d9182699416c327a1e8a48e963a4ab307612affd5f38f81ddbc2
MD5 c32bc117c7dc00fb7d6f9f9446c86f4b
BLAKE2b-256 d9226a987b2937cb97614406ad255a885bfb0c3a09365ed150a58977c744e340

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9d7d4636d7d71cdb984c4fab56cb35b15cf3fe423d1aed334db1c9da26d3443
MD5 352963aa8491b680d05980110e5863dd
BLAKE2b-256 350aaa755feddfe45e57f2f7e1dc85d86c82462ff9c095407ac60cc337d0073f

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea6380c73c5b91fd569bec969c6873462ae62806054ba1950afd99aa7aeb09b3
MD5 82f4749beb6992e9c914180afd6427e1
BLAKE2b-256 5559043991845ca198455500c08f5a8adb0bc5ac230c12871472e4501737d342

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 196e0772c4d2e3a8c167f45fd809edd43f00c3092ed6794860c833fc349af49a
MD5 78d6f854cfa1ee5ad8ddf17a061decd5
BLAKE2b-256 62ee352a7946deb02587cd67b860eb7864cd6c85c35138d62b036990b5c5c209

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.0-cp314-cp314-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.16.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ddee3bc7cdbc35956b7368cd848704f6b62538b61eeacb5ec7dd90d91eab42e
MD5 e40ad2b1c75c71086396f3f25ebc2f57
BLAKE2b-256 25c96cc587cb198bcc80a42a9236d96546f20e1fe3452cc77f7407290178734d

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d5d12d979e5ac36aba6d430503422d21582444ec1e7030924734278875cc731
MD5 56f64b0ce64ab51f982411c2eda4d725
BLAKE2b-256 8fd0aba6928cbe04551b04e3591a1db44f5e77e3d3386239aae36d670410d5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2444a02744c32a7623842b2b9ed5fdeb54bc9fcdbe9f345d4fcf0ecf13063316
MD5 9fb3d10d9e931ccfb85765268aa950e2
BLAKE2b-256 dbc2b46fde8576fe0a21a1dfa878c9ff0faf34187e18b40be2fc31014cee645c

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31cdca0318a50bdcd8cdee694b5b4d36e60a165d092e96386e5b9d52d308a1aa
MD5 a3520d0dcd73298c9df88d33f32d62f7
BLAKE2b-256 4cac712bd84cdd9bce84d4793ffdaffb8476764ec910213f67a73b2e9d264155

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ecfd0d3475fac9e8a181c0d8df5261fca7d282f5920dfbd0eb52bd9285da67f
MD5 48bea632ad425d4cd788e6c6d855d378
BLAKE2b-256 c12c1198e431a9dd13f51becb159acf8870859b6f472dc8ccdfc712ce7624381

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19cf2182a5785c39334fa31e182b5cae741c8cbd888b55313278ebb69ccd2ff4
MD5 eb6f1d8aeeb882dbfd5d97df90539f43
BLAKE2b-256 26cc8f53682ed04e0942792a703876f5133d64361bf6165da085a83ba04af2d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abcd580fd0cd89bb0210eaa747ff64b1b510bea1e065c07d0b2bf9b67521e591
MD5 f199ccf86f538ff4bd8b0a480e41f362
BLAKE2b-256 847fab38ee0ef7260e99274d085181797b0be9969a564d1f11f53e9e8a582f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2f0d3b39566f2585411feb6292c2c30380f915f4584022533e62e3376482e4fb
MD5 96293fa0d35f44deb84b5f77f2373768
BLAKE2b-256 6acedf2c40825af9861a687a3f65afc36c911b479352b5842ecd8d7e170fa7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a51062f094d7d3ba819597757dcd1fab7769e3cc62c837dac853113a96a5f99
MD5 4aaa7406d77b2679b048ff02223f602d
BLAKE2b-256 61ae1265a91bceb3e68fb6459bbe617cd3dc615699ffc5c634d496c8af362232

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6702a8e033d3d3b210772014e654a40b982c6cc190825dc4681f85d4158936c
MD5 e0a23ad4686ec997eb60bf1260c90b18
BLAKE2b-256 873a776713c267c0e19fa4f86b41b2289885262b96ea32b42378db059fd2cb90

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cbac85406e201b4588f863aade39d107bfc42200cb1980fdc76dfad41aeb5da
MD5 a1660e9d4b0d62d1362dd82861711f37
BLAKE2b-256 08f5d5048d61ce7e1d27a42f1724e901bfc6201faf5beb50b15ab384208ad3a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7da31089098270ca6776e93fc863ed8c10069ed8d5f96c943de3f7e0ee64789a
MD5 acf00306047949f4e068210fcf3a5013
BLAKE2b-256 d70ab23c4cd54e78126537fe01560e62cc7cc49f21ad1e0a9e7da7e3dce7ce9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2afcd153c54a66f1c813183f833de8cb99a6d6bcd28d99ac3944a4377e92aad1
MD5 f5325896bf84647a8adf35f35e85de3d
BLAKE2b-256 bdef6aea2e29e6b222de702608c6090d74c61ba23e3ef336e557fb468e6e67bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8350cda4f94c4f0647fdaad1c11f395506b871f86197f0e91f064a564c96d46
MD5 f497418135b08bcae3621800a49056ab
BLAKE2b-256 8b0819611dc60fad40bfa8934db3499229fbb763b48e0904e2b11c4fc7a1cc4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 547c89bb3a3c91696a419620f7e92457a1ca4a2d935a95c23ed99a2c72cc6f94
MD5 6eb544d051eb3bfcca0c76926dce3889
BLAKE2b-256 c837912327a4c2814c0b7ba595777b9a25e5ed1de32c26462acbfd48aa6cac29

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14a13a063467b97b9e24b55afd27178234b39462f952d952c419f88272f84417
MD5 87312d1dc0e5df2bbe96a27d3e3a2c25
BLAKE2b-256 542d6e4aa7302f2c2bb42f26151e4b78e4783d674ca7b66c8862c54225869abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83ce44926f02128e8866d7563227fb6d69f9af200c03eeb12f1ba4e9f74ea3d7
MD5 decb2e46c6844e63cc67065e6e253c50
BLAKE2b-256 5685b5fecdafaa1fc9de7cd19e86c35d917e2320e7bc37e3f3ff0abbefbffa1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc34cee9644edeffd1b232533ae3c1af6d577d4a4383ffc9b027e4d6b1568154
MD5 7cdd339080f2cdc13888b6fe0523955d
BLAKE2b-256 abcd1536a8ce5e64321073992413b7f3f845e86b7e1621128c8b5e5d4f21a81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80298d08ded12aedb7159183c3494aca17dcaf6c44573d474ee394a454dd7874
MD5 8b0208a56fe7bbad743504104ae990d8
BLAKE2b-256 d9ac8d4ab53302f5f9b311299152ad6ec7966560c5401fa7d1619ff009d038fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11bf512c5693b6c93acf6c668beefb96d65c0c6b70382941a904281a60e472a7
MD5 42ca657e1415b372fab4da73372dcb9c
BLAKE2b-256 aa727f2407c7c7984f9cfc51b58df719281d4b393f109dea80636f8836b9e88d

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dff8afdd19ba4020fcc2c5bcb89e391d3fe4047c98bc84099ab929e1ea0d232
MD5 dc35e7ec4463b3be2bc0623707a84c0a
BLAKE2b-256 509fbb4e8d439beb7fbbefaa6ac8cbf2ea9d0d0f1d6c0c4f6b5c9557056c5d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1223b4ff816e439ae734ce0566f874c37dc119414729a282feb9f3895e309bd2
MD5 a678dcd89153753aa8a6b6f2017fc233
BLAKE2b-256 5b82ff94304db69d3bb12ca525c7f19d65fe3f02a5a4245bd08b5586d9b79b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b925075397c3b0c4988c22665379a044e64f2e80f040f5277289cd47d3f264d
MD5 766a4beb938eef6bb21f116b559362db
BLAKE2b-256 1dd598fdfa15bb86944cce2989cc228fc9aafc0255386705fccc9c2ca9385952

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ea29d5cea90b24f3326701d56b86b6f964576a947b32f287b8ec11679f44f49
MD5 aa86b0a27d95e9f33c5a99184f9f6d16
BLAKE2b-256 1b6ddd61da343530f5508b9e3bae6aaff9e12de025f12751d566351ba54bf10e

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cc36557846370c3ee4cdd6a5bf64b96774ab72f9b00ffad287b40bd2daff4ff
MD5 1161e9286dbd5847fcfc0b0765b8f5b6
BLAKE2b-256 ce3051605fe8c97f7d84d0b2fc9afc607491ad2137c2cc430e714c10944c8e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaffb181305f35da06127c3859193c085e8df14a12d186709d73a86cb787086c
MD5 97c08f8cf9cc3fa412e438b4f4e6d3f3
BLAKE2b-256 70e0cdc5ce40fb40683ead13ffe7d6c25e63f8a2cfb3c17170344773293c10ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9542621d9fecdc5024a6a7d55b2062f8b63fe316768185301fd4569e9983a06c
MD5 ad396d0c2ed8d622ee02c482aff2b72a
BLAKE2b-256 38c815ab78a324e9835db8437a83d00098ba042c0f90943f36842cc20aca2172

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.16.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for docling_metrics_table-0.16.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6513c23fe11a040ce866dea219272ae1ce44cfaedefe54b94d3dbeacd8cc7d6a
MD5 fd683f2fc1223c3d8e609da66601ae25
BLAKE2b-256 7d593580b601dad0d4951fc719527993d7d5dc1d989d481064fc64d7d8a14f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for docling_metrics_table-0.16.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.

Release history Release notifications | RSS feed

This release

0.16.0 This release

36 files

0.12.0

29 files

0.7.0

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page