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.

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

[~5-10X faster than v1]

Quick start

Install the package from Pypi

pip install docling-parse

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

from docling_parse.docling_parse import pdf_parser_v2

# Do this only once to load fonts (avoid initialising it many times)
parser = pdf_parser_v2()

# parser.set_loglevel(1) # 1=error, 2=warning, 3=success, 4=info

doc_file = "my-doc.pdf" # filename
doc_key = f"key={pdf_doc}" # unique document key (eg hash, UUID, etc)

# Load the document from file using filename doc_file. This only loads
# the QPDF document, but no extracted data
success = parser.load_document(doc_key, doc_file)

# Open the file in binary mode and read its contents
# with open(pdf_doc, "rb") as file:
#      file_content = file.read()

# Create a BytesIO object and write the file contents to it
# bytes_io = io.BytesIO(file_content)
# success = parser.load_document_from_bytesio(doc_key, bytes_io)

# Parse the entire document in one go, easier, but could require
# a lot (more) memory as parsing page-by-page
# json_doc = parser.parse_pdf_from_key(doc_key)	

# Get number of pages
num_pages = parser.number_of_pages(doc_key)

# Parse page by page to minimize memory footprint
for page in range(0, num_pages):

    # Internal memory for page is auto-deleted after this call.
    # No need to unload a specifc page 
    json_doc = parser.parse_pdf_from_key_on_page(doc_key, page)

    if "pages" not in json_doc:  # page could not get parsed
       continue

    # parsed page is the first one!				  
    json_page = json_doc["pages"][0] 
    
	# <Insert your own code>

# Unload the (QPDF) document and buffers
parser.unload_document(doc_key)

# Unloads everything at once
# parser.unload_documents()

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

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 build

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-2.0.2.tar.gz (24.4 MB view details)

Uploaded Source

Built Distributions

docling_parse-2.0.2-pp310-pypy310_pp73-win_amd64.whl (24.9 MB view details)

Uploaded PyPy Windows x86-64

docling_parse-2.0.2-cp313-cp313-win_amd64.whl (23.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

docling_parse-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

docling_parse-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

docling_parse-2.0.2-cp313-cp313-macosx_14_0_x86_64.whl (21.9 MB view details)

Uploaded CPython 3.13 macOS 14.0+ x86-64

docling_parse-2.0.2-cp313-cp313-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.13 macOS 14.0+ ARM64

docling_parse-2.0.2-cp313-cp313-macosx_13_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.13 macOS 13.0+ x86-64

docling_parse-2.0.2-cp313-cp313-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.13 macOS 13.0+ ARM64

docling_parse-2.0.2-cp312-cp312-win_amd64.whl (23.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

docling_parse-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

docling_parse-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

docling_parse-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl (21.9 MB view details)

Uploaded CPython 3.12 macOS 14.0+ x86-64

docling_parse-2.0.2-cp312-cp312-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.12 macOS 14.0+ ARM64

docling_parse-2.0.2-cp312-cp312-macosx_13_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.12 macOS 13.0+ x86-64

docling_parse-2.0.2-cp312-cp312-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.12 macOS 13.0+ ARM64

docling_parse-2.0.2-cp311-cp311-win_amd64.whl (23.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

docling_parse-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

docling_parse-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

docling_parse-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl (21.9 MB view details)

Uploaded CPython 3.11 macOS 14.0+ x86-64

docling_parse-2.0.2-cp311-cp311-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.11 macOS 14.0+ ARM64

docling_parse-2.0.2-cp311-cp311-macosx_13_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.11 macOS 13.0+ x86-64

docling_parse-2.0.2-cp311-cp311-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.11 macOS 13.0+ ARM64

docling_parse-2.0.2-cp310-cp310-win_amd64.whl (23.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

docling_parse-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

docling_parse-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

docling_parse-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl (21.9 MB view details)

Uploaded CPython 3.10 macOS 14.0+ x86-64

docling_parse-2.0.2-cp310-cp310-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.10 macOS 14.0+ ARM64

docling_parse-2.0.2-cp310-cp310-macosx_13_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.10 macOS 13.0+ x86-64

docling_parse-2.0.2-cp310-cp310-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.10 macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: docling_parse-2.0.2.tar.gz
  • Upload date:
  • Size: 24.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.10.12 Linux/6.5.0-1025-azure

File hashes

Hashes for docling_parse-2.0.2.tar.gz
Algorithm Hash digest
SHA256 18823b491b060972df7c2623184896005435b1ec8a9fb5e386427207e2dda0bd
MD5 ca12227e64ffa9afa9aa63133d9e6aff
BLAKE2b-256 445aa5e739bb6c9bc0edf234741ba59b743559ef2ad167577acd899c793e0855

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61e9e0a392de5cde72a9f6cc91e01b5b9853efb327a31b129f22324ee8f0aba2
MD5 62aa62d9a921af011ece89a126a223ee
BLAKE2b-256 b6e991bf3661996d8195cb9fc0d88646353ed5cf3752bf3ef5d95fe82613ef3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3174ee8fec2ed5ff8e97598a6881515da185e945e9a5d5ab776246ec6ee98baf
MD5 92c8be7aa2048bf5e1aa312c60a6a693
BLAKE2b-256 238ba2c9713c7db8dc53fb2a8f4cbea804be78af0dd95996e00ff108b143c322

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07497616fc9b7ca66231d1b1c026199e3645c26c64f100e25f4a1f26543383b6
MD5 8d8d9cb52f74343f42a32004184c6ef1
BLAKE2b-256 c50c605061d2d0ff7cbdf51914c30d03f27cf921494f2653a55a986c80944902

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f7eea81abf6ce91e7b450744b004095d1c52fca6cd39f00da05c8023e436aad
MD5 7e404646267f98c55afdb63d81d4f504
BLAKE2b-256 bdaf9093129433a70f91351220c84c952aeb1a726a411892d42d71c50430154c

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 b630b6f28031cafd8f1ed044b7045d4ea67a726e6f289d0fbe54fbf388cfa3c0
MD5 88de2d7bc1d9d634f60eff421a236981
BLAKE2b-256 37ad69a2afa4125cf77a2706f3d12644c8b23d614ef7209a8c2ff35ab573b8ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a087e4917f620cbfcb56f9df82a19f4d0ac9e4c9f786de772ef98c399da791f4
MD5 98501031f3ce84f4a42ccb25934d78a6
BLAKE2b-256 800df93168d35a2c68a659b54f8197b9fd47039b29f8dac2206cb89063b4d0b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6b7b9e18781672bdddaf5632307b3a538484c96221604ef463cd4e333716c712
MD5 569ed1f1470841abca1abbf1e9ac6cb3
BLAKE2b-256 2093bc50f75c0ab7ff1059872cb168a6eabd4812cc2808aa9683551f835c2c06

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 15a68fcc412a8fff90e63d9def24cad996b7fb291e8f084e48f838324f935c12
MD5 78f86b4ef7175f84fa1e441150f640dc
BLAKE2b-256 4d2558d37437e312f2bf2247702898b4fd0cc426b76a82403fc9d56cc0a751b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c6c93771fe7c4edf40558ff0f6bf5063d8d5e02a56f6db5d979beb60b33802c
MD5 c59242e380118f8647f394ee5ebb64dd
BLAKE2b-256 aeef22ffd361da920c5be4a59937a7b129cf5ef93858ef94e8cfed45e4c7d9f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e011ba13df36bd8e1b5101fbccb8ae80b43b1e61e7008db36259ba00222bac3d
MD5 f2061f5b353b2882fec2c85b28f2f46c
BLAKE2b-256 ba4956d372f9e38a7a4df719983b9b8f7415c0e70e992d28529e5ed21483b559

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e41fab53ee92ab4a92db502c849feaca403f3aa9099cf8284b2d305942abb50e
MD5 be52edc03aa110e832f0fd342752c4e7
BLAKE2b-256 64b19d9ce2f85ed6c28ecdf0f44d5d0ba1e1c49e71c29c0fc7622cc8303dcee6

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 608a42ea54174972090bd454225787e3185f90c837850265f05faa0d4fd6cf7f
MD5 8f12d5f1e67064f44d41a78e537a5cf3
BLAKE2b-256 04b7c2f780ca0a562f1ef661ccf3eb18a3e112e45ddd2727e50958eb33bd047e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0ec54785bc206ead2fbdcc4b858560e9607ee87df2565e662479f0c204467571
MD5 509f30f07afdaca1b83eb1b2171a24de
BLAKE2b-256 3d75d0cf1a763507ec36a62ae686a938e2c4f0903d90100d85ef6ccc725a1ac2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b82b3b11bee797cf125d4835b1f27588d76989eef608aaf71c022a78550529f3
MD5 8d442fbfc0ee2299288932f215d9ae91
BLAKE2b-256 fd75c2cabf6a09e350061df23a812d11734678cb1d1e6818a2e694042de7544a

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6f95a151870411925f5f714fe1c3d7f7f595b75d537cfbb30868db389254b7fd
MD5 c36af19fc7a0e384d1641e058487574c
BLAKE2b-256 8440e7b091c9fa94d21d22ee3769f15c3133028abd2065e7c4bac42648e77368

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 434077fb9fb4738f9f604c015002882af846786ea2fa0535cb3e79f21e25a26d
MD5 2ebf80b0e8559966ca26e6e3abe9f37a
BLAKE2b-256 aa709fa3cf38cad4f891ae5578bbcc2ea8d68d49cfc4f2bc0cd8ce6a9eab1e68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34571c5493593d440b2b18869efc7f753e7ef698f890cc470c3dc3e1cb0986be
MD5 0ca3c68a6ee36ac7108f3e4ce6a97997
BLAKE2b-256 928d9e921687c6393b80c395c16aa0023c6e09b056139acbb2f0728115f9942e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1dac5583f8ed53bd4b878c9bacdd5db493310c2560491e869e1b475d6fb8faf
MD5 7e692cf23148641db0035a56314624b2
BLAKE2b-256 72e3d7f669f27dbcaa9f740b2016da81b47b5aa59534868959725169544438e7

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e2bf535f8334184f7fac43724bfff58390f825d7da01e6faa02e09572cbc7bc8
MD5 08feb202d5ec498a670b254b24d749ae
BLAKE2b-256 52285e5dc47e052fee9474669a5b3d56b8661dc64aa762278411a9748045cac2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5632328c84344fbce86a59f4c83c4efc71f8d87cbb885e01c4cbe4fd56db97f7
MD5 16a0cf8ba3a57f7617b0e417c8d682c6
BLAKE2b-256 370fe010a78914bf063c3bccda1d896a56eb9e5a0150627cad088da903cb40e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8e4f7efd533119ecb51f8a431b79028b57d5ebf8f24517234d9b9de9ed090386
MD5 bba55edf5987f093891c5e01caf2a0ee
BLAKE2b-256 c1a1fd62774e0a7d12602e06b239ddc74d999fd5852fd345a9bbb6ae30c137b8

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9e29fa9fcae08f700a7f218dbbab131e68628ba0dd38970131d9d4059e71d6bb
MD5 5b8c2c24f9031a143441ad5ee9023080
BLAKE2b-256 7046145f53c8c5c41ffa7746b75591a6dbb57980c6aed37b9d280d47352a8e42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 171baf4897143c91037960b74cb9e97caa5772045e236064425f347ad9156acf
MD5 666dae91116e247e4f25cdc41207f2e0
BLAKE2b-256 13bc8c9e5b8d2f51e92a87ad14ea8869aedb88559155ff82493c800e63672903

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75c10ef2d9e4eb4cf7309171707f1c8daf22a14f24c4843f1b549f709f7452b2
MD5 34bc66f2811006dd950359045333c6c3
BLAKE2b-256 7ae78b7a6c8430ebf7c396000ad8b144ca3f1dcd17cb4fd25478e2072386fbf0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7abc64de66160012f4329a78823cee54aaa47b4835b2b9f1ed3644b85ac9501f
MD5 88dbf2c57c0e9acbad0a0ed3ad8f4d4c
BLAKE2b-256 451d1bb3a404fa1a751fdf8c8d2b83a7f61119518a3973c2efc6cf2b101e46e0

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 20d6377cc7374c7ac538a928f28ab5033ab1b674cce9d0358fdf1be5a49f819d
MD5 5f3b94a37b6c78dfcacc0c6dc5602a2d
BLAKE2b-256 a76beb38ae9e8694f2097d4de5d802f248f2572eba42e076149c4ec177c9db8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c55fe1d5e43176580038de7d2c03899ec8d3a729e93eaa214a9e60d7889be1a1
MD5 c9fb186827ccb0539fd091dda66b68d1
BLAKE2b-256 1ffccf77bbf857eb74f7792cd1ddf31a04d2b2af693d91fb8125c868dffdbdae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 92e496418b28ffee0275c3e6dfc8129297ae9fd4b239ca028e0114ccb147c3dd
MD5 fd4c6cee346e3bf9897420a7f56f1389
BLAKE2b-256 9d2e72b614ae020ab80ee9dbc6521fd38bde3e1955bd24e04a5ff592da19e0a1

See more details on using hashes here.

Provenance

File details

Details for the file docling_parse-2.0.2-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.2-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e5233210555b40608b4229b348e1fc95b46bb8ab0aed459cc3d8ff5735ffee09
MD5 6ec4f4c572b103779d3bbaf05fcf1dc7
BLAKE2b-256 55415aa2515ad737c5d9cd1d5f839500a87904f34c725c8d2c9d07d56170094d

See more details on using hashes here.

Provenance

Supported by

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