Skip to main content

Tree-Edit-Distance Score metric

Project description

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

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.12.0.tar.gz (596.0 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.12.0-cp313-cp313-win_arm64.whl (244.4 kB view details)

Uploaded CPython 3.13Windows ARM64

docling_metrics_table-0.12.0-cp313-cp313-win_amd64.whl (260.4 kB view details)

Uploaded CPython 3.13Windows x86-64

docling_metrics_table-0.12.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.12.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.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.9 kB view details)

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

docling_metrics_table-0.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (321.4 kB view details)

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

docling_metrics_table-0.12.0-cp313-cp313-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

docling_metrics_table-0.12.0-cp312-cp312-win_arm64.whl (244.4 kB view details)

Uploaded CPython 3.12Windows ARM64

docling_metrics_table-0.12.0-cp312-cp312-win_amd64.whl (260.4 kB view details)

Uploaded CPython 3.12Windows x86-64

docling_metrics_table-0.12.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.12.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.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.9 kB view details)

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

docling_metrics_table-0.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (321.3 kB view details)

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

docling_metrics_table-0.12.0-cp312-cp312-macosx_11_0_arm64.whl (252.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

docling_metrics_table-0.12.0-cp311-cp311-win_arm64.whl (243.7 kB view details)

Uploaded CPython 3.11Windows ARM64

docling_metrics_table-0.12.0-cp311-cp311-win_amd64.whl (259.3 kB view details)

Uploaded CPython 3.11Windows x86-64

docling_metrics_table-0.12.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.12.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.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.3 kB view details)

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

docling_metrics_table-0.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (320.6 kB view details)

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

docling_metrics_table-0.12.0-cp311-cp311-macosx_11_0_arm64.whl (252.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

docling_metrics_table-0.12.0-cp310-cp310-win_arm64.whl (243.0 kB view details)

Uploaded CPython 3.10Windows ARM64

docling_metrics_table-0.12.0-cp310-cp310-win_amd64.whl (258.6 kB view details)

Uploaded CPython 3.10Windows x86-64

docling_metrics_table-0.12.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.12.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.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (347.1 kB view details)

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

docling_metrics_table-0.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (319.2 kB view details)

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

docling_metrics_table-0.12.0-cp310-cp310-macosx_11_0_arm64.whl (250.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for docling_metrics_table-0.12.0.tar.gz
Algorithm Hash digest
SHA256 c5343bd2cf2355f3bb76d36959ae2fee6b91385c6c6f07035d48d5da80823790
MD5 cb67eed51005034498032600311aa960
BLAKE2b-256 b601999dc4bab66486e8fd61e0d0265068510c82b8b09196e9d05faacb5190d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1d5277d42fa24055849615d1fbbdf83dd04f6d6482fd260860f05dc0c4adb6e8
MD5 29960f3c6e1b4704ac19271e60c8aea0
BLAKE2b-256 bbc0b6592df05b535986f50230fad490357d56af23adc19dbb7f759ccaff18a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d50885b5da427f49758b3c06dcd0cf9fdc1423b68943ef1eacb69877499c3b81
MD5 6515f558deff894f3408503d8f745164
BLAKE2b-256 129d7ca9df8287a58ea1a33c0552c85a585d5fc9638618f3757d6784faa90c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4a823112a24f7799f90bbac095e7b2dcb61ed51745f613577bed8e18c80b201
MD5 6f6ba5d2d7304093b51d8afb3ec25d8e
BLAKE2b-256 6ebdafc1f649e0a2965c5f9865d2385751674cdaffc39718c5331ab7ad878fd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af5ba3a52e0eeea855dd7c1cc7876d2063b6e3f9d05e1f258a76262b5628f49c
MD5 ac56c0da4ece4e6b29eab5a279d4df17
BLAKE2b-256 672a28f244ad72354f64687db683d2b4e1be4770e17550f8683a02cc1d9cc718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33732cf1db93f484f025af13886c59993ec7442bffe034f992b42ba2fd2994d0
MD5 36ec6f0213f5808382a1a8e51a483379
BLAKE2b-256 78085f9f2bceac7ebe55969c6cb4ee5e14be5060316a216331849d0ef2ded58e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d12242fa74a1b549a74ad708014b47c3818d1b9e82bdf75397e8b27c0bae12f6
MD5 50235a69148528b1590e9b98c1c7a20f
BLAKE2b-256 d2ed71d1ef0fd2106d3b303209ca08c05ae0dae5f4b2aa5e13b9f3f3381d6d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38e196aa297bdc45af921e8708509729b7ade4c3531ba809ca55fc75ee55bb0b
MD5 31e5c930b7a9f66fb3d725f346f757b1
BLAKE2b-256 736bc70ce9c52614d7e5983c24e422e1f6feefcf65cd3aae7dbf48c10ab22d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4561fd62f81b96ed50b6e5da0c5617b9471b30de097a071701b8469acc651c36
MD5 9ee10a67c3c84b9e979c9a0c48f59366
BLAKE2b-256 0d8428fa1665b6c1269e88eb4d366bf9a8390280604468115796113718d23bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 544503c97564c473e0209dcfe9e9eeffb299491f0164b9cb6eec6f5d668778fa
MD5 240f944557e984998e2231895679d6aa
BLAKE2b-256 674ce7f2f49248f80aa42188483f8cc16b54e06e91e7c7d172d0aff084fcdce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3f7f453f5fce3aa9e0df53c023e06d24f5a46fcbf2251014c32c193cb38cf7a
MD5 4e6ac55499269bad71274c7cb436e2a3
BLAKE2b-256 d286598cb32299bfacb079d070b5bf1b1d38c418de3817c39de53d35f242c768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 646824ca30aa13bd222029215f363c196bd3c1043f23a1dd416997102b949ee4
MD5 2abf8ad12f2fb1926992ce237e449518
BLAKE2b-256 09712bc314be153feafa755e79d77ffb604cdaf14475e99f147ec89c695b5f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2de5ae4004491b74e3b16591b9d48af1e0610d89d5708bed81e245105ad111a5
MD5 6e81348423210ec303df00df138c7e16
BLAKE2b-256 8e436c920b0c7fc06412d485112c88836779b3e8a3899afe5383480c869c3dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26185aa52b835c2733090ab43c49dea8bbbcc4a8a3dc2766a1998572ccddb88b
MD5 23c2c199f297e6eb22b161d11403b43d
BLAKE2b-256 273c29b4f7c53195987137aa0387116f2943b402770b44410066a7bd2b3522a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aef59c620fe487810260a3ce1a061ff63239fac55ffcd68e38693d672105c0e
MD5 a14c15e2575e02b0812af4d5e2f69821
BLAKE2b-256 397ff87e2876cf105cef45ab8c8c4104c672403d26d39897d4d2e9d159e54f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5be6513930479eacdabe5defb3ef965b2abdeeaca49a329ffafe24327aee40bd
MD5 d71e038f300afe4c08ee792ce7404d54
BLAKE2b-256 8062da6669e4b8bc6b70ca1765c215b5bc0d9bf03374b1c6d1e99374fa52fb6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d34d1baa70ba5a62959b64c904b8746bc69ec7e0ae6483d5f04e74a6ee13080e
MD5 7890667de07385bcc9e530334dad9d25
BLAKE2b-256 ec25a7dc02329fd053b7999f84f0fe35db33879ef7c4433976716385f6b1aa40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2309f50773cc18ecdaf89dd9d528e1a7155450edebdd86e7fe85b827b8a87a34
MD5 17ac74fc15892396af6600405ae63961
BLAKE2b-256 f86644ee40bc5f55235b500f7c5b11d57235c07fdd1995366df47d7f8fe9e25e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6528073b6fe2e7b810e212a68928f1a2cb12a704fa19d55e7fdf3eb33c72457
MD5 438bf1d55a464a430b4341c5d2c99612
BLAKE2b-256 d60b98711338b32e0474a22081a3353838929d9371bb9fadeb0b0caadf4f7300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e2b28dbb60f11c061f3aabb13fc35544ca139a7768bb39ee5ec356a48f2f55a
MD5 815e205b898fc96995d6436bb26455ae
BLAKE2b-256 387f3026c0b68652f13bf6141bc32b2f1e177520d07b037c7b8eb147c6ef803a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f803f5b8db9e0f133e8303b2e4a09fe981492e549e29df0470867c427a2adfc1
MD5 0955c741503ac050b214af94bfa456f9
BLAKE2b-256 374070ab72b1eac5e7617ff2c25886257f84793c3eb1c2c2c129c05b8f62a327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6d60e53541c684020fc234b3bc4881c37f90e5fb896d6e98b7c4d6771273b3
MD5 20e0e3615b790782dc3ae0e06fc6f768
BLAKE2b-256 d1cbef67f43984bd58638a8537ccc7a97bff2638badea812a8f8176a99ec4e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b7268af617ae4c5249d24ecc28a7d407c8cda121c98b75d6de7e6cd6d65bc7aa
MD5 a771ab329715993f6af1551549af6302
BLAKE2b-256 7f4321e5b54606d1203211feedab5a74f07f9ff5f0ee36c5c4fdb5aa7ddb72d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3f0a096779fed9d5b29644f1d44a0d116ee288bdaefd685c26416ccee4ce5ca
MD5 d32a3234092806e9d740e05f386dc525
BLAKE2b-256 11f3fd1e4bdece13fe13f5d5241133267a38ff2c7aa0779a5c2a4302b78abcc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de4ad5b1a6328e04f13a45dacbf8aac8a66dc859f4d3a3593d852c5d7c607475
MD5 dd2594c97019249e006f426be3937ca7
BLAKE2b-256 ed9b3e28038d9e9e459b32b143b7e4cf2329ed87b3056001b7bee4ce24fcf8e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab88838b206cf736929773bbeccb1e6d4bad63962ee92dec3af59f4ebb951c28
MD5 60721b76eb961269be23e08c7ab2aa08
BLAKE2b-256 63931b25c9ba6ff81784b39b22e163b62abf22596b1a047850aa7324c9f774b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ac7cfe1199647d859e06eb16dbdcfb241695063fcbcabd537f65aabc54dc80b
MD5 393126b34e8616c96beb3210120d2398
BLAKE2b-256 fadbc278f49c24be0a82c83ff79477a6de5d663322229f7bb7d0c1bf05a1f905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14b15bdf8fd2be863dbf591a2f2f89c9fce6de6431e7ea1f5cf7f22d1ab42319
MD5 aef2c6972c53fe21a5e0cd749b655e89
BLAKE2b-256 419074d3d072a88cf63eae7787b78a2c07461b7afbb7070e3c6d5a5443d0c980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for docling_metrics_table-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ea07f00f5d35b82a047b5bc91d933ae832e64ec5ea7612d1b139f1f506dd729
MD5 0a5ec1b062c0971dd6943eff44fe5979
BLAKE2b-256 f416afbe03f03804d3a38b5a5a9d2c74e37b166ce52936bbaa918883361a643c

See more details on using hashes here.

Provenance

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