Skip to main content

Simple package to extract text with coordinates from programmatic PDFs

Project description

Docling Parse

PyPI version PyPI - Python Version uv Pybind11 Platforms License MIT

Simple package to extract text, paths and bitmap images with coordinates from programmatic PDFs. This package is used in the Docling PDF conversion. Below, we show a few output of the latest parser with char, word and line level output for text, in addition to the extracted paths and bitmap resources.

To do the visualizations yourself, simply run (change word into char or line),

uv run python ./docling_parse/visualize.py -i <path-to-pdf-file> -c word --interactive
original char word line
screenshot screenshot screenshot screenshot
screenshot screenshot screenshot screenshot
screenshot screenshot screenshot screenshot
screenshot screenshot screenshot screenshot
screenshot screenshot screenshot screenshot

Quick start

Install the package from Pypi

pip install docling-parse

Convert a PDF (look in the visualize.py for a more detailed information)

from docling_core.types.doc.page import TextCellUnit
from docling_parse.pdf_parser import DoclingPdfParser, PdfDocument

parser = DoclingPdfParser()

pdf_doc: PdfDocument = parser.load(
    path_or_stream="<path-to-pdf>"
)

# PdfDocument.iterate_pages() will automatically populate pages as they are yielded.
for page_no, pred_page in pdf_doc.iterate_pages():

    # iterate over the word-cells
    for word in pred_page.iterate_cells(unit_type=TextCellUnit.WORD):
        print(word.rect, ": ", word.text)

        # create a PIL image with the char cells
    img = pred_page.render_as_image(cell_unit=TextCellUnit.CHAR)
    img.show()

Use the CLI

$ docling-parse -h
usage: docling-parse [-h] -p PDF

Process a PDF file.

options:
  -h, --help         show this help message and exit
  -p PDF, --pdf PDF  Path to the PDF file

Performance Benchmarks

Characteristics of different parser versions

Version Original Word-level Snippet-level Performance
V1 screenshot Not Supported v1 snippet ~0.250 sec/page
V2 v1 word v2 snippet ~0.050 sec/page

[~5-10X faster than v1]

Timings of different parser versions

We ran the v1 and v2 parser on DocLayNet. We found the following overall behavior

parser-performance

Development

CXX

To build the parse, simply run the following command in the root folder,

rm -rf build; cmake -B ./build; cd build; make

You can run the parser from your build folder. Example from parse_v1,

% ./parse_v1.exe -h
A program to process PDF files or configuration files
Usage:
  PDFProcessor [OPTION...]

  -i, --input arg          Input PDF file
  -c, --config arg         Config file
      --create-config arg  Create config file
  -o, --output arg         Output file
  -l, --loglevel arg       loglevel [error;warning;success;info]
  -h, --help               Print usage

Example from parse_v2,

% ./parse_v2.exe -h
program to process PDF files or configuration files
Usage:
  PDFProcessor [OPTION...]

  -i, --input arg          Input PDF file
  -c, --config arg         Config file
      --create-config arg  Create config file
  -p, --page arg           Pages to process (default: -1 for all) (default:
                           -1)
  -o, --output arg         Output file
  -l, --loglevel arg       loglevel [error;warning;success;info]
  -h, --help               Print usage

If you dont have an input file, then a template input file will be printed on the terminal.

Python

To build the package, simply run (make sure uv is installed),

uv sync

The latter will only work after a clean git clone. If you are developing and updating C++ code, please use,

# uv pip install --force-reinstall --no-deps -e .
rm -rf .venv; uv venv; uv pip install --force-reinstall --no-deps -e ".[perf-tools]"

To test the package, run:

uv run pytest ./tests -v -s

Contributing

Please read Contributing to Docling Parse for details.

References

If you use Docling in your projects, please consider citing the following:

@techreport{Docling,
  author = {Deep Search Team},
  month = {8},
  title = {Docling Technical Report},
  url = {https://arxiv.org/abs/2408.09869},
  eprint = {2408.09869},
  doi = {10.48550/arXiv.2408.09869},
  version = {1.0.0},
  year = {2024}
}

License

The Docling Parse codebase is under MIT license. For individual model usage, please refer to the model licenses found in the original packages.

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_parse-4.7.0.tar.gz (66.5 MB view details)

Uploaded Source

Built Distributions

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

docling_parse-4.7.0-pp310-pypy310_pp73-win_amd64.whl (18.1 MB view details)

Uploaded PyPyWindows x86-64

docling_parse-4.7.0-pp39-pypy39_pp73-win_amd64.whl (18.1 MB view details)

Uploaded PyPyWindows x86-64

docling_parse-4.7.0-cp314-cp314-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.14Windows x86-64

docling_parse-4.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (15.1 MB view details)

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

docling_parse-4.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (15.0 MB view details)

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

docling_parse-4.7.0-cp314-cp314-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

docling_parse-4.7.0-cp314-cp314-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

docling_parse-4.7.0-cp313-cp313-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.13Windows x86-64

docling_parse-4.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (15.1 MB view details)

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

docling_parse-4.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (15.0 MB view details)

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

docling_parse-4.7.0-cp313-cp313-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

docling_parse-4.7.0-cp313-cp313-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

docling_parse-4.7.0-cp312-cp312-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.12Windows x86-64

docling_parse-4.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (15.1 MB view details)

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

docling_parse-4.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (15.0 MB view details)

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

docling_parse-4.7.0-cp312-cp312-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

docling_parse-4.7.0-cp312-cp312-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

docling_parse-4.7.0-cp311-cp311-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.11Windows x86-64

docling_parse-4.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (15.1 MB view details)

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

docling_parse-4.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (15.0 MB view details)

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

docling_parse-4.7.0-cp311-cp311-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

docling_parse-4.7.0-cp311-cp311-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

docling_parse-4.7.0-cp310-cp310-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.10Windows x86-64

docling_parse-4.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

docling_parse-4.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

docling_parse-4.7.0-cp310-cp310-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

docling_parse-4.7.0-cp310-cp310-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

docling_parse-4.7.0-cp39-cp39-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.9Windows x86-64

docling_parse-4.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

docling_parse-4.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

docling_parse-4.7.0-cp39-cp39-macosx_14_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

docling_parse-4.7.0-cp39-cp39-macosx_13_0_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file docling_parse-4.7.0.tar.gz.

File metadata

  • Download URL: docling_parse-4.7.0.tar.gz
  • Upload date:
  • Size: 66.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for docling_parse-4.7.0.tar.gz
Algorithm Hash digest
SHA256 ba533b90b8032a3fceee7b603243fb2b5e3438e710c75c58a61491c185f2ca0c
MD5 69c965515fc0f68382efcec25a5ee6f0
BLAKE2b-256 0027667d4e150d5131ca5a85a57bce908d434ca73d459e961fb1201bdd56e7e4

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 18142e8dc9849778d38b87d32c6913ec795636cbe92181db16a6bbcc524db506
MD5 72a116726266c2aa0ed505c985d5552e
BLAKE2b-256 891cdccd8e2985182cb070bab11c0c3c89f084fe69686784e3f9724b9d66cbc6

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eae28027c93c94075c420e48756121f88b4efa4b400fd1b307b5d0e901fb18c8
MD5 fc6a10703a4af91523c77ec6cec89393
BLAKE2b-256 29d7efb7807ce045e85200031d8cc090faba1e25dbe4ca30ca7ce406a787a1a1

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c9add2fdd93cfc6ef14f82085af8d26444711255569e6fffb661a7f5f878f9a8
MD5 1e3ae6d9908d201814b20d9356d78e7d
BLAKE2b-256 31f3039520544492e4015703880df3475973bd9ed1b35d20674616f96fc07268

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf3a103c9b84295cd0dc032f05d65ed14dc80a155e0a0a2e2f0b7e2bb007efb7
MD5 3358831ea494760b242a87b67a25ea78
BLAKE2b-256 5594e62ffe81ba269ba8ab7de94f083f390463a13c5ced715506e63106459bb2

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6776f0d06eeb4896366532c08a89e5b2acf772e8717e537a69f707f3dff36ab3
MD5 5abe17d271548a13709dad262f4cc54f
BLAKE2b-256 0d2e109fe8f3bc8a151c81d5ceb6ce59bcc07c32b63ab7a0e9e29c41fd112f20

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 37a6103dc194cd51b20fb7533743e28bcfd7564815bd0a67d9923fd3b4210c11
MD5 fe51d6f917c973ad60cbfd6d59c32ea9
BLAKE2b-256 6fcff1f4333235d1bb2eb1234faa217f6943a34986f75b0c3c1979bc13d983ca

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b8a51fd875c2059bcad687dfad4a3d993a6dd03457d4f88a2a4ef07c4287eae5
MD5 e01ccd67f80edaa66c6ffaa6b5999fc9
BLAKE2b-256 32422190993328a6b1709df2a90311d8573116cb87adbfa3029336ffcff0268a

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0de39bf6e04c87bf9369562bc07691a1eb133dd71fea75764805a2bb175954b9
MD5 96b07bbc5069788701fedda386f714c9
BLAKE2b-256 284bcc597e26248160da8b14ad1bb4ea26379ac3ab7a2c471a65a1654c771399

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 018fa9ebf33af3ff3825a2ba4df3cfa3b6cb7dba1e4bebcbc4ea0ec0bf0a813e
MD5 49e3698348eec9438d7987caae36f0d2
BLAKE2b-256 2293ffa60d906f9e7b49580eb3ec2b06900dc19e4df037b5665ae423a5363844

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 872ddca632e4f98df768b5c72b5cbf2c139e12d8ef0b71349d1991a54acc9c7a
MD5 9f9ff64e2c1fc6de358958bedfd746a3
BLAKE2b-256 35bc7c543db11faa86ff7b255f3d6a7a8d35c62916c7ee2cb42f63a556bc25c4

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 64fc2abf0fd840687eb2dc658ba3b85056f691c591f1b6e8adfe56392dc451c0
MD5 686a5059b06880fcad48c083f7b555f9
BLAKE2b-256 525f1b5f558c0d841cbd562bcb9eeb5ec6535d5d96640d237d73c2eb51c488b1

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dd1b3cc3af029972e8601e6bc3e774fae2638d5727c0b822867f6ce7a2b8c5af
MD5 e640e65d16952c7723735d5a6ecfeb8f
BLAKE2b-256 e79f1c3b31c2e7b9ce7e6d7df37d6e20c22914e72f6664f457acbecab1c2bc5c

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64efb76cb0e910b2add683afc8c01eb6cde28ceb6442e17470c576866a256cd5
MD5 9038c2ebc699f41dab6b3c4a2d40f19a
BLAKE2b-256 3fe9c8f2cb839ce0ae95bfd1f3100aed7f692c5a233c0640e30162739cf99d76

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9df7d5063000427b2453aac80926aebfeddb236ab28ac12cd7220f640b72dfa5
MD5 af6f828c0b3f10bf8f334b85a370c8fd
BLAKE2b-256 b3ae97313eeb0008ea80d0ee62b7c88d6e523242a43a14d4f9293be28ca6a35e

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77defab883726ff27e617e1b7fc8e690ffba0b0682cb877e122b6f659448e976
MD5 0f9e611954f1bf25c81b0a4ba2e9a779
BLAKE2b-256 c73ffbefd30083d625e4e1c6bcdad650642e72c2f95802e7f98cfd1e38d76adc

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1d86a04947e1ea35f56b0f4efa2dde6d049ea8412685205ffae40ee90252f83c
MD5 ae4bd85b4ca6416744060bfe31ce25ed
BLAKE2b-256 1eb3cf08fcf8844961feaf4d0bfd9005db5ea10ec3cf20e4f74ca9bfeadb0ad8

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5f243ce5b8b073cc97ea5ae8af983bd0dac2d67e33fd62c9703ac390880d5ad4
MD5 1ebe6b57904c663aab47fb84e41c3317
BLAKE2b-256 9e29abdd6c77a409e39d8b8f14bb8d44ecc2bcdbb69687f731cd93d81e11c4a5

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca6a11569147bbe7ab8e3fa69bbd39c3338465ef942d43e582a66587e39128d1
MD5 4da6d35b4fa7c6892e2c2531e2a96fdd
BLAKE2b-256 48c32c992cf4f09b770a8393e8cb7626230b92ab906f5def155509116f327c60

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8e390d0ef09a7b3bade71021576df977d497d98fe5aa03e53c5d3dd8a8469b6
MD5 ebf144c14599edde32f0885e21c707d2
BLAKE2b-256 3bd57894b4856d53a5020f5ffa0f1250a184ee05d78b84e171e41fd0eeffbc99

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 422fc9235e835a1dd5ef43d59effe4c703d325a99ff1440af4e4252e4dc05bf5
MD5 626f249d8dd82af886a9d3294bd1f06f
BLAKE2b-256 a916c082b5384280af3f075cee39138a8ca159ca31dabb3c0368b85bafccdd83

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b5cc0b7b62aac7d97d8f8f95d5f08ffd6fa5b2ec2ce7f3eb780c46c1c788a384
MD5 94d4e4f6e4c86416ee34bc8d52743733
BLAKE2b-256 abe7ff44bab52dab809f4a7618911fa2819151ce2161bb84745582335bc19115

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4950c2877db8ecfbb78d8ca42ab7d627503fe80c9783e0ce58fcd6d49415723c
MD5 cb98db5eb1774e5f79f7ef3a77fac972
BLAKE2b-256 c1821bd8b5552d6d845de466da47dd2264891e0c38d53370bdce64ca3b727aa7

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b2f031f4f35ba3c7a19cedbf5b0f2945fcad3d7f073d8d6abe05176112b501c
MD5 1c3f182ff8052a22142c64e116b57d59
BLAKE2b-256 9c93a5428194d1fa94dfdb8209dd4748cbb63c7e6de71bcf79bee2bdb92c133d

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bde5ba8670c835abea585c0b39a6ee00f516a3f77ecb9bdec47fb43dbc077920
MD5 c35ef78bf0748a5827eb08d43a757014
BLAKE2b-256 521c592dd3d6d713c30e6df7e1fc35dd4e2cefca3bc0eeb1ad784c1b92799a27

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeed8ab02812eeff9e39cfe77939b899a61f635a9253914f58aa9966240c7485
MD5 4f74cb8f0025174f425e621b9c74ea00
BLAKE2b-256 79875fd9f71a4dd4702f886b078f4c39a6597b11df9828751c0ef397a2c4e0d0

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fb784ae7fa2ca8e63981aeaef005002f7824a13517b1e9d96085cb40f6b228f3
MD5 89ee7923128fd177b113d7d4c14d4f9c
BLAKE2b-256 d8456f558ba5f8dbc8c7c30d9c345377862c9cd8e131d98f4f9719199e848084

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4ff2072ba65802dac8121a50b7d698fb04f14cbd4ae144ffa917204bb5beafe4
MD5 511aaadf576aa1eb05f1393c265ed124
BLAKE2b-256 af8ccab69f67956297c09d928f00568d6ee75a258a1946d58eded87db49b1a58

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40805ee21a2b112a88231034338839ecbd17a60734e232fe130ad3af66b00a33
MD5 9fa4d726c76d0c42fb0e6127105a57b4
BLAKE2b-256 3c757f09cd1e64db62e6a6068115e2b12bb491b61c2d1986a36a7973b6d07a3c

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f5e1961d5b0e63233e4ed668be86ef351fb679e1c36680f624837259b5c75d4
MD5 047945a083865036bf0c8ac4520b5b2a
BLAKE2b-256 9937f9ab4bd3de4a9221c32db18920b788782cab17e04dd17c18764f499a4d75

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 771518c091be3fbbaffe75739ac7eca94c62a8ad5bc9cccedba861486b3a4a8f
MD5 064fb90cac4f68878f134a772f000ace
BLAKE2b-256 52e6764feb80779121d4adc5d1062f46384da2168973ca20c63bc8c7f4450475

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 098fb02a482a491752fdbf0f864c1f3acb70bdd28449cef4d978d9379b0592a6
MD5 cda6d070b8cdc9c76f516f4fba78c322
BLAKE2b-256 3b92b3fb5c6aa9acb163eae8fb38e0d3306739852405c627575cdd019be4fe08

See more details on using hashes here.

File details

Details for the file docling_parse-4.7.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.7.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8299668bcfb83f267cefb6b78cd975cdd354ffc1a50325142a6bd39be120b7f5
MD5 a72380b2ee3103a49542c52fbc96f22d
BLAKE2b-256 7103988f70dce528bfe11f77edb7062205566b1d8f1bf9dd9c2fa76eff9768bf

See more details on using hashes here.

Supported by

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