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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

docling_parse-2.0.4-cp313-cp313-win_amd64.whl (23.2 MB view details)

Uploaded CPython 3.13 Windows x86-64

docling_parse-2.0.4-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.4-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.4-cp313-cp313-macosx_14_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.13 macOS 14.0+ x86-64

docling_parse-2.0.4-cp313-cp313-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.13 macOS 14.0+ ARM64

docling_parse-2.0.4-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.4-cp313-cp313-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.13 macOS 13.0+ ARM64

docling_parse-2.0.4-cp312-cp312-win_amd64.whl (23.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

docling_parse-2.0.4-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.4-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.4-cp312-cp312-macosx_14_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.12 macOS 14.0+ x86-64

docling_parse-2.0.4-cp312-cp312-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.12 macOS 14.0+ ARM64

docling_parse-2.0.4-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.4-cp312-cp312-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.12 macOS 13.0+ ARM64

docling_parse-2.0.4-cp311-cp311-win_amd64.whl (23.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

docling_parse-2.0.4-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.4-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.4-cp311-cp311-macosx_14_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.11 macOS 14.0+ x86-64

docling_parse-2.0.4-cp311-cp311-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.11 macOS 14.0+ ARM64

docling_parse-2.0.4-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.4-cp311-cp311-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.11 macOS 13.0+ ARM64

docling_parse-2.0.4-cp310-cp310-win_amd64.whl (23.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

docling_parse-2.0.4-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.4-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.4-cp310-cp310-macosx_14_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.10 macOS 14.0+ x86-64

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

Uploaded CPython 3.10 macOS 14.0+ ARM64

docling_parse-2.0.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: docling_parse-2.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 bdcdfe070509e137846108056931e3738ad3225fcb31ed1496e9368690c3036d
MD5 e429563d404b54b3d18970410726ea04
BLAKE2b-256 0ea8ebb22d0d45c250c3c9b5cbdb2303b3c73697c67849408f652611feea9e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2e2dbe4e18b6aa2f2fe8801685846d7b6a9bb355d6eac48b697cd9d1b62501e1
MD5 7cad6cfec28fac578acd207c41f579fc
BLAKE2b-256 a3565f2a7aa4e9423b16b03e4b4f4326d9f615efd49af88bb6ac0c53fdb20203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99cfb99c1fc65573a45e2c99b98cc6483134451d42a81b9f4cea27e4e858415e
MD5 4dac7979422c33aca2ee1e53f694a52c
BLAKE2b-256 f7f5a1f9ee504f2a425242ff66d4eac556cbd1db6817aba03c7ab9b0eaa31dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e84a3c50086380fff7925cfd9e9e4e62b2d2f4b79660520999f39207d478b18
MD5 cff14d1ea536996eb03319defb073898
BLAKE2b-256 bd90b3d4e6a066e028add71d75191a900981e1d2857c44091e6dbcae968b9e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c02edd935eb5d4d3b4a64564ac92f6a427bb106cb5632f745d853a6ba7b7441
MD5 ce51f3cb0875f1bf69a0055326dd1514
BLAKE2b-256 f933c7e53a1abacbcd48ab6883e3054099e125eeadc5c6572cc793f9004ea33c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 737fb79b6c91a676ac7cdf4ced65c85f687a968b9d1d2ef95b04958fbbc554ff
MD5 2882f9a6d4053d8d4efb6753d4164055
BLAKE2b-256 85de002d9b9e18a32096d562127572aa081a50a9e2cbc154e2d6b3ef817dd6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 db839a2a7a8742b93a5cab4d91c664938306d248177bc5b716527003c32054a3
MD5 932af589f1fa737ff2b0cff26606bcc0
BLAKE2b-256 f2b1914406e50aac5c5fcdea1bc52f9c4c57907a1a5ec8e3dfb5980775a8bd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bc2efba8183356c6437a62e9802055988f5edc2d907ea1a42a2613737b2fc77e
MD5 41c522e9bd927f08f4cfce919ce58dd3
BLAKE2b-256 ab7c30f16101ae1ca5ad1329d2e14ccb7840569d609281754489b571e7000b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e8cc56e41ae4caf4302ebeaaeb02de2b60edcf5ed4bdcdf13a67eca0c1b9f39a
MD5 5d151baf39e6218e129508be0916e33c
BLAKE2b-256 904fbfe1ee31b5b3712ba9a86ea21a0211db658eefc747e12131cc6e3f43a00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac34fae4e0080dd8719c22a4aa49a013003a13f3f6bf68f5763136ac7626e390
MD5 5b87da5cdd880d2c10ec934610e626a5
BLAKE2b-256 bc5c729da9f69efb8b5a9531c96c41443745b8c5e9abee1b5253e064b315d64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b1ccc13bb32b5c5877f9c3f8870a88beb56d1ab3335ce8a81561cdba1054dfb
MD5 014944cc05b8eda1d66ca9b4c23bfdf3
BLAKE2b-256 eaae83980cf5b4ecefddebffabae98e7e8fbb09f72df2e4060181f932aad8e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 132e7db9042f13141ec089562478737fb8df70fcd33a0cb0161c7e6cfebf5b46
MD5 a2ff286591044316b95d8520bc8c8162
BLAKE2b-256 97b0c4cf5ccd169967fb9e8c60847cad0282dc8f383c2c4b4a4cd8a92424d02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ff7fb21829aa2acad6874ac78b87cfaa642b0910ae6d60e90007c2021fe05c73
MD5 af1ce60af4d902d7b0efbf1a68fa372f
BLAKE2b-256 2c376c46f8df35bcd57399983c91586dfd0911eaf87ccc6544f5bc8188d177ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 419dabf6aa0f895878d489a95bdd173661d0891674638c6c01a9b5ca8f156839
MD5 35d5d240d2429f1306d412cfbf2da140
BLAKE2b-256 66b19f1655aca2ca7fcc142f04754ce646b43aa37ba1800e7860478b470b8704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d35c8c3dd8f580820ec8905be48e37a36f8c3fe8cacbe366ba75c7c35e0de938
MD5 9d43beb10040e0c491baf3c5df0af963
BLAKE2b-256 3c86ac5e0ed969e5329737e4ee06524072df5e60d23a5c25dd6e2e8a0fa72f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 60c560ed7fdfda1748dca23c858d2d5eb0eff5858fef060bfc4851e1f949e915
MD5 42346c671ed8ffcaf183877a46cfd1cd
BLAKE2b-256 c85778d4225b9e5379862262765a1118c635e4ffe65fc5477738dd450990012b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e56726829cb82977f5441db4e1f4d9357faf3ed3dfd55bfa135e650d476a8d8
MD5 1c5b320caf1fe64e24a5f856b8f28547
BLAKE2b-256 38a04e016b58503c06ab43278613e528c3d259121c4efb30949cc032a770bd41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87dbf20715dbbb9b7d5ff49475b65ce88454c43c0b00bb8ec5bda30643c79003
MD5 5d13d3320e40cc8005fadb30663c2300
BLAKE2b-256 7bdef18fa7235003f173aa502e4e1b40c4a1fc36b88087079df86cfd2bf91c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449c449168cada11eaa83a779e2c25ed4e9e9aec63db2012222ee28fa048a020
MD5 166dc0e30bda81e157cfef69ec103140
BLAKE2b-256 14241293d1f40dda4571a1c85fb6b4cf2f41786c47222a6eaad076c19f004bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 f385d97cb0cf0933a5f0eb4da8b0f9fc9d8629bbf93d57b9043b7a51ba0b33c8
MD5 1548e2f962f05b3fd446b1297fb42150
BLAKE2b-256 b0cbd88103d2713b46754ef725fd1688cd906dc98a97557985cc7cd18acdf650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 43dc41995310ed0b0015bea6f72df7cb71106a8550d79946f66f30b2ab2c3a29
MD5 bd1de5b5cec56938f5fbaf9a2eca4ae3
BLAKE2b-256 ac41aaac487a656ba97d31953bc3c0f7d651d1938089952670ba4c46a34832b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 10c7a2e68a124ebb54b1e27ce6c85ef2f4d9da294e391fc131a9b39b1f9ce657
MD5 ddb579045df930a4ae219e72e3686308
BLAKE2b-256 3eb05fb78dcebf2d29baa6ab5ed0785ed53881c368cdb1911b30ff1d21f91185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 52c94fe627382541e13a8e7fbad8242b618636db55eeeeacc6e92dbf88130812
MD5 1b7ebdf76daee0ca889f6979743a0580
BLAKE2b-256 ad18916860349a3b2180fa93ae0cb62db13e63ea6deb6965c6c4643209c4468d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ce2120287efe4fe408795cfeea881a71d6980527a46ee583a69247e8404d4c0b
MD5 8f24231dea7d6b2e329fbb7a256bb052
BLAKE2b-256 37a83499bbd41a3cc3a103155477cc70cfe62378459e95570f2bd7cea24e6efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d5447cce907ba6725609346f04d38a83671d2e0b13b468d27a0a861d96af144
MD5 648c5d4c842f5695286eaf85494e3cae
BLAKE2b-256 8232914d0ff1e17f099ee9849add23263cc42c652073908e4850c8a9532a1c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4fce1f091aed82e16726658174d06098642c197ce1ded9508571aa2416a2a03
MD5 c92265e01e38a4be106dc14d91aab8ae
BLAKE2b-256 50102e8f34b1794bff4ff629f761fbb71034fc6bfe48f30b3fe5d3184d06a794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 580b01b9276845a410d3aa59397cacb06ad3cf4f471bdfd18187ac0dfdcaaafc
MD5 8412b276b17ff977cfbc5ee909b2603d
BLAKE2b-256 b0872de7205c79249ee6c1623fb818d4a6cbd946b67b6441a28fbe6a4e5dadb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 32f6e791bceb3b1cac357878929ec976aeb50c40b395518934f4817bb2530eae
MD5 88294ef65ae73a541dd6b2aa7d31a94b
BLAKE2b-256 bd03515fdb216425ae529d48149c7d0f5b9f96932e20ae8c3875e16630aa0ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 156f34124408a1d016e6a3e1c5a82f58e43c96acc8f3896e81bfb2b5ecc127d5
MD5 53353bf46f47812d40e781e5e77b0519
BLAKE2b-256 a896dbee09b12de8acac635eef6373a4e0bd713bc4e49e683d9bc7d3b708a0f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.4-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1ba71aa48538fd118b7f5e872573d384c335d205d3c6bde102067e0bf2b7d6a9
MD5 34952ac63e90e9e35ffd11d5e8676234
BLAKE2b-256 5e588d39a60f6be81cc9b410d6f743f9c4c00a2e8c0e4f1f9276448c4d9275df

See more details on using hashes here.

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