Skip to main content

Simple package to extract text with coordinates from programmatic PDFs

Project description

Docling Parse

PyPI version PyPI - Python Version Poetry 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),

poetry 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 poetry is installed),

poetry install

To test the package, run:

poetry 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.1.0.tar.gz (39.4 MB view details)

Uploaded Source

Built Distributions

docling_parse-4.1.0-pp310-pypy310_pp73-win_amd64.whl (17.7 MB view details)

Uploaded PyPyWindows x86-64

docling_parse-4.1.0-pp39-pypy39_pp73-win_amd64.whl (17.7 MB view details)

Uploaded PyPyWindows x86-64

docling_parse-4.1.0-cp313-cp313-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.13Windows x86-64

docling_parse-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

docling_parse-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

docling_parse-4.1.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.1.0-cp312-cp312-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.12Windows x86-64

docling_parse-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

docling_parse-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

docling_parse-4.1.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.1.0-cp311-cp311-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.11Windows x86-64

docling_parse-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

docling_parse-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

docling_parse-4.1.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.1.0-cp310-cp310-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.10Windows x86-64

docling_parse-4.1.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.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

docling_parse-4.1.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.1.0-cp39-cp39-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.9Windows x86-64

docling_parse-4.1.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.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 14.0+ ARM64

docling_parse-4.1.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.1.0.tar.gz.

File metadata

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

File hashes

Hashes for docling_parse-4.1.0.tar.gz
Algorithm Hash digest
SHA256 6c2f52c5438ff6158ad2e6d2064b35786f01ce7f1b235c7c882b71ab221549c6
MD5 c3e7e39c5937b96002de50d9b28acabf
BLAKE2b-256 c024fff30a36af50a720813b1bdbeaee140136ff0fcdfad041ec8127c3115b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2124de8f5b1dc04f97781d5b0c138d7c35f0a6ce5bd93820ab4d276802b5e345
MD5 1a29c26733debc0e34f2db8b8f70513d
BLAKE2b-256 e6e36cef53b0084b8bc0ca0fa2944ffa9a80ff32d462a1733be555363ad00552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e0ec4f15294fad4219979084cbe581bb8d18bb30d5d45dbeea5ad1ddb038a40b
MD5 c2ac21a942001a4c57fd97aaba396d6a
BLAKE2b-256 35b9c340c536f856a139598b41f213414972a739207347d91b73d2a64a38580d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 adf42e7d1dbcfd67cf466f3e2b2569ddd79af3666c582ef6eac26263584471c5
MD5 41622a5a32a00c32c9eaf2b018ec9677
BLAKE2b-256 29df39a85b8342401b1ac066e97f3c698e62f34505d3c219a4ffebbbd7c82eca

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 371067eb2d04c3793ab57f254c32db354edbbd85f14e54cd5c67fccd2705acff
MD5 c3cfe407e02042891faa6eded676d22b
BLAKE2b-256 2cea153dd31b4e46d818b5917f0daac883ae467e32ddab5ca97c67f8e2971b85

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 008d4ee03a076102be80292008e791b994905780a68ae41d805cf9ff2d610b80
MD5 6e8058e51c82f548d251effc8421effb
BLAKE2b-256 4ff514d5a939b815011c4b2d58e9afa3c80faf58ee70cafc03e10ec4d7de3e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 058402d6915abf87a9f360a5117a87d864e2e0eaf3fe725c9295765c004460ab
MD5 4d9c295f467b95b43730f8a61aeb3823
BLAKE2b-256 eda306987ca409c9b64d8309f962e402649f02486d79ae10ebb9c940d5e0313c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0046a2f2334338fbc3c679179a594999c8040e4a71f36c0e1a90c188eb697298
MD5 ecdfadd9ce8bfdd11c46070dbcfa7ac7
BLAKE2b-256 233b78fd2fe779dfb9588e4fa27ee6ba36e9e3d4195916536e300d6c38a9c08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc657a5fd6fe6f82f6aedde40b295697edb582bd30aee08517565fd5cfba207b
MD5 9cb093b7efe5e3aa217605781c9fced1
BLAKE2b-256 665dfde692143f6106d6c2153f19c2e2db9f30700527449b5f0aac8b1e55d571

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80dfcc89569b96b653d3db270ed83418045c5d4a647be97273b7a302e3d4c51c
MD5 f8d152a8566e4a824b0702ca3034d5e8
BLAKE2b-256 e551080bba290becb3e0e43345db92a13341beb40bb7aa5a2cddf6674855f79a

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5eb29b9bb2eddd91d857ef457b99b67918d1e63569eadaafc2603a8f742d0ad5
MD5 c3c79eebe172be698f11553f4f7a8a76
BLAKE2b-256 83a98b6c47ed8b2ce51ae97a3caaeab56e593cd91ec7204a6d2f3eea11aeb46d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 566573e534de6b353af6362d742b52e06e0a37d4b540fe763dd6aec78817c4b5
MD5 37285c753fb7fbd402c890e4b734d7d1
BLAKE2b-256 2ca5bb47eec4abd635bb931332a1408d87829ef649e10469783b37c322b8321d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 febf2b0f08d24a273ee11d876c563ce1d20648a8ddd4c6129e5665138e79c87d
MD5 659e0bcbfc7bd38b9c4367b3945c5363
BLAKE2b-256 c2c33e72edf879df697eb9349e42980028c4d3d210c0aeab31f7132ec5c6301e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2495b5ebf7669770715c290d5f2ef47a849bc2801e8bb78e71f92ea49322b3b3
MD5 a4ec8856455724d2eda48dc5ea4ecbdf
BLAKE2b-256 b35167365adea9afcd1a923e86e5ebecf10e192e12532486e3677adb72c41be1

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9cfc436cfbc635b65fe4bb5a3157872944c98b95851b71269456614c35d5bf5
MD5 8efbd5412b0eeda979cee30e25c283e9
BLAKE2b-256 26d304f9816b8eea9e7fa2665bcca511c27ee1e2a223a24ce39bb0cd9eefc7f2

See more details on using hashes here.

File details

Details for the file docling_parse-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e568bb9d8188bffc72fe10a78712c73a5a6002980b3602d58969dc14e0d7ff1
MD5 c61a3576c48966fa6c937af579a478f5
BLAKE2b-256 577aa665f853ff801879598738beb9a5fc3142aa50b1f81fa46d8e1f92d1a4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 78515424b90fcd305f8ea9ab243719c3030c9ce764cef44be1b8cf0d8fc4a5a5
MD5 85ea67aae647c27b74b365518a94efd2
BLAKE2b-256 d9ac051d61783b58dda5e33884dc25f4bda38025fcae7f0f94a159373895947e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 66a6773981702ba052a0f766f868ee98526899ad802bd03dbf50b1209fda8082
MD5 4e5c2527e0dd0b69f590fe1c9a4dc3f4
BLAKE2b-256 f4328755b295c9850b75f3ee64274ddcbce67c4afbd8263b5136c073483c997c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28f91e8a09b502bf76324e8d68100830c3fe37b420268b7585aa1bde257acfd2
MD5 a6102d78f2279eff9c696f2bc6b831ae
BLAKE2b-256 bd0dc5cfc9dc95a9ded97402d6b821f78556dbfbf65dd3a209abd219a47a8fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62825b46c58bafca6a03a949dd80d0e50253d6e6e979c8c73e00edfb6b58da54
MD5 ca1678519aaaad46f7ff87f030db85ce
BLAKE2b-256 cbea833cf6b09c5fd8131898dd9df21aea5ec2b6db3c6a04d2782cc0f338357f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afd5c8d025986110cbfaad9d8cb924b636e08069bde7dcd7e724d57a0a62b24e
MD5 fab914dfaaa61e89af9c6606a9a4a632
BLAKE2b-256 3b095705e61951a6e7475893387539c3a0f4b1aac74372961fc9c1a6bd7260bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1c33cfac7ff70c8890cac33b80e0a3dab4d6c527635806fa60be558d69bbe02a
MD5 40818b2a802d2d646ff53c30c994ac26
BLAKE2b-256 1ca0a4e91bdaf1bf859afff63a814dac3016be280afc2cb3c97a213a2aa0273f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 93e5b5f7916d25a4d628940ea93ffb9f11ca8143946d897afb4c025cc826742f
MD5 d3b1b614072f9a92208ea1fe49d8f84a
BLAKE2b-256 53e5926fce2ceff34b1f1f9ce458652e098aa133b1f76fc2db2bd04630fe0deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 04ff8a0158131edf203774a252b161ad4b053d430ed123f00b63af17f9d80280
MD5 e0bd868e8588cdcc77245878269555b4
BLAKE2b-256 fdd2edd9f63835a4157db004037644e034407e4a1aa1ad3a3338cd8dba13fa08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88885c4661ec42ae00b83a87f4beb7d5df0b9b8c037c34ec2ef8ed8ad9ad485b
MD5 93fc2381d2fe79dedb9138d5be8c4c3d
BLAKE2b-256 55ab996b39935fc0dce229ec8eb77ec7f611476e2654b3390b68e789e0c69595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d67b65827a3babeb5e738f9bd47313353f06826eb59f6b128891abac273bddde
MD5 53d68ea626ed291fc41154b6eb88fa6c
BLAKE2b-256 ca11decb9f2598f1cb486560ca642d88482c92754b95706c15429bbd2b8a9e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 02fed16e96b4c8e7fdfc08719cd27df68ad9d31ec2f4c62c5ac4a7415a7b4bee
MD5 153381c3c15ec4a714ae77e5e93040a8
BLAKE2b-256 cb24aca3dc0a73ee49a1240eadb5df53899b6e59d7a890f71f56bcebc4c0af0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-4.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 44c268231c4a0a2418e25caeab92784e7514cb8e9dc4f32af743d9a47a2c72ad
MD5 fc44432b1a59d9d2571963ebb1eaa083
BLAKE2b-256 f1062fb95e9abf33856cd80285f3c179e4d5a85b375e8d539c4688fe1b00e6fc

See more details on using hashes here.

Supported by

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