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 sec/page
V2 v1 word v2 snippet ~0.050 sec/page

[~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("error") # info, warning, error, fatal

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

Uploaded Source

Built Distributions

docling_parse-3.2.0-pp310-pypy310_pp73-win_amd64.whl (25.0 MB view details)

Uploaded PyPy Windows x86-64

docling_parse-3.2.0-pp39-pypy39_pp73-win_amd64.whl (25.0 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.13 Windows x86-64

docling_parse-3.2.0-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-3.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 14.0+ ARM64

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

Uploaded CPython 3.13 macOS 13.0+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

docling_parse-3.2.0-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-3.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 14.0+ ARM64

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

Uploaded CPython 3.12 macOS 13.0+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

docling_parse-3.2.0-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-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 14.0+ ARM64

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

Uploaded CPython 3.11 macOS 13.0+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

docling_parse-3.2.0-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-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

docling_parse-3.2.0-cp310-cp310-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.10 macOS 14.0+ ARM64

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

Uploaded CPython 3.10 macOS 13.0+ x86-64

docling_parse-3.2.0-cp39-cp39-win_amd64.whl (23.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

docling_parse-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

docling_parse-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

docling_parse-3.2.0-cp39-cp39-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.9 macOS 14.0+ ARM64

docling_parse-3.2.0-cp39-cp39-macosx_13_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.9 macOS 13.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for docling_parse-3.2.0.tar.gz
Algorithm Hash digest
SHA256 d45e34860a2f845d1726d87af77e8deff17e0c6fb876707a7cf390492d408c2f
MD5 7cb3f4e4923108e78c2c2d484e1062dd
BLAKE2b-256 a02e10ccfba4ac03605ee31d3ef3940a8428c644fb28566aeb90029266ec92f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d73b0f920bd0940ea9daefb8c9d02aad86f62422c4e320e66dae74f07ef9888
MD5 236378637206d2626c5c5e788fd1c641
BLAKE2b-256 f5d11ee01d4a576a69b973d773d57d56fd7d640cc2665b8c88eeb091b4e39169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 68bcf3dcd80afbbce128e7cb2d319842a6fa0b719ad61e4c6872ca32c5063a88
MD5 3fab4417f5bbcfa010e5ca7a438c59be
BLAKE2b-256 e76e128314a1fcf468c291a3fc2442fd1576beca4472d3664aae6f3ec675a29f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1b9e32989ff58e0bac85d6cffb3a523dd2373d350b26d46e1f8daff0110595fa
MD5 819e6d75586528ddb97e47fd50670888
BLAKE2b-256 e29614735f503e2d50d61ce35c9889efb1343dc26cbb0b4410fd56fc7725bc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a2fdb3993f7affc73ce19f1202a2f28f3d8cf1716163d9e978ee9c834312c31
MD5 72179bc9dd88db4f59a7a12066582156
BLAKE2b-256 2184733eff29384d204f53a3752292e8ed77b0732389f1e7342b92ff47199b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c06851f88b5edaa7115871100608b9d68bc804b28434b90e57879e178098aed2
MD5 596a789489cec662e7bc1a262cee10c9
BLAKE2b-256 021da383ddbd80180e84958669737c5bcdb996791d41f312a2a81c857cd6cd77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6fc65d623e80d8d63f4a6f542408b7f88c0dc8b2842c2523858536d4607d33d5
MD5 89105125fda35c8ae1feeee2ca8c7035
BLAKE2b-256 34d148aeb30ec761daa39d79d1361ac4e6cf0952c791affa9027926c6b3a8b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 feecbef5b8593dcd9a35ceb06b29feb879515b5b900bcaa5d9be0c7a3a0ca599
MD5 73ce007416166b55abd1f7c684ce8719
BLAKE2b-256 d17b38f318bb73b59e4f74b6ffcc72d886dd4d4eeb192186ba3cfa65412c0116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 20265d7d51b3f4a3bb03e3de694f395d0403bde92915eb5df32f4d67adf93477
MD5 d1b266729528524a66b306e9e1ba260a
BLAKE2b-256 530121ba457089d7e1a4af6618793e609caca1f598d945813636fa36c0ccea6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27de3b28946a615f16e6824bede965f8df5f3b2552e17560415922c79fa8546f
MD5 b69ffcdd1ea04af09a3ffc4ca7158a81
BLAKE2b-256 5054387fa23ca2b2522b4c0aa48c8c8739d6c18e50def50db45f3f1b8262f840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f54881ebcd87384b29f7a6475b308034a9ecba0dfa85dd1d2569ef59e2f37e97
MD5 f2d418105b783b42e1ec773db53922ec
BLAKE2b-256 89f87a310ed4c1f1eb590993fcee0b1bb19bb2bc788ba84b9d76f822bde5c9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2d17bf3dffbc2fb565c5fa8347ae7715fc091f4f94228b4ece4f8ab5c3fb428a
MD5 1d9ff1beff4be5a3b078971bd4a27b59
BLAKE2b-256 65eb3301fd3e73877a1816e7394975ff43533b96a60b3542c186755d3d6bd10d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a83458692c607a393b2f5858d47509342274920553775db5c8d0072ad6aaa0fa
MD5 599a07f9a4485ad578881b0188e496b4
BLAKE2b-256 61dbab6f2e0aa5907e3b4e5e464aabe53a53a4371bf1bf44ccea74d9137657be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f2a7801d6fa843cd3243aab38cd944e2f4ff386fb5e6fb7b27be1dfa69845c7
MD5 9470ab6a1f0c26b56dc65bba0c2ef7af
BLAKE2b-256 ffafb1955551315eb540d5d780a3c61bb88bab6353baf3997184fa3e6eba40ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71595399283ecacb255cf1768d1840177f7c33aedd58195530505f9aa8cd5a24
MD5 acf8e8a0caf1ebc7b7c3b54e998058cf
BLAKE2b-256 bfeb1c122ec31b84d7513dcff725e102f66d54a9a8334cfec261be8b4d21b45f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e90e9c2b21e732b3e1af697abb5e7bca9c23a3be8e25a6cc4d92221d526953c
MD5 64b74e48bc528337a91876336c53e91a
BLAKE2b-256 4f83d5d89c86a15bd9b9724c9414ea6642eb0d4bbfa97bc2580854f0325fba18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9df9d892d8206cc2a0091bb1e2e3ce6f3ab881342980c53bc7f4bf7c831bf057
MD5 24db60edfedb1114a28e0a49165fb84a
BLAKE2b-256 0e6ae2acbfd2418cd42365c88994388865fb8624aa6ab2e70b7fb72c6a07c2c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f3616a3fb3dacc87307b6794dc81e6aec09f59afbb42f487b0100f39571e7442
MD5 f7a59f004aa8723f94a1bf49195eff60
BLAKE2b-256 80bcdd5bd1b8c9780c6817f83a438e0891d2eb3975379b9a20ad3bfc524774da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5048626ca165b24a35f417a58d3c4b3f936bc9d2271fc633153a98e788548cf
MD5 bdea35e205357a7c29b4a426ab469042
BLAKE2b-256 0d8c531b155f60a2e5021d5078cf3c2b3f054effafe27c1f93db4bb207b2ef25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dc044ebad99808dd7a82fa2cf5beaf90f744522225bf6dce62200c810817c31
MD5 0989d01bc9a0b66af75d1f713d520330
BLAKE2b-256 b18608094fe8ce5f1eac36cb13ec5a324e9bb15afe1302b7f3882ce4b78198b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87dc9071aa9fabd586c36599d983cda55f9eab0ba7618009f52f8f537598a70c
MD5 492aec0790a55de5e8fa06b1c74676d5
BLAKE2b-256 5dd709c88a37f657c79ed3515d79bf20cf6d6ad6cff7b825335ea56157352530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5fd77a9bb0cee57e9bee9de2f417c83ed50e49145c5ddb736801b68e004471e1
MD5 d14d5238867f39f9aa29b72eee6b5fff
BLAKE2b-256 7cb8f2d51ee5c17b05765ecdf556ffdc87d088c7efc7f2ea4f7af3e3486c955f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 16a43ab04f13f93602baf2b35dd96d4f2ac646732270e329d00ad6e1c714b013
MD5 fd6a98f84080f1014eae6c3602d9ce31
BLAKE2b-256 fe81cebf70a6ab729db0f7d53e230da3fb154a70f62be3bba325e466efa265cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 491589373188c2683fbaa0d366e4806258bc6bb8ab8d1d596144516662d92e90
MD5 471f57dcc918e90a4b5a6359925acebf
BLAKE2b-256 f5724f8b115ddda91f9c4391ef7f1a19581ae77341cde07345ae830f0dad2f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8687ed6c3a299a46646e369f0bd072286372ecede54c8916b40acc6be6347f1a
MD5 992a166d468ba8cb046a0b90d477fe2e
BLAKE2b-256 fa224a968d616ccf33a3825431728afa67c2b92477c555ee3ffe0e712c047537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b7c0f7d8f7e103305a3c4bc1ae00faca9a8b16a2a3e34042cff1b9e13f922d9
MD5 cbd6b552f3b15ef10832be9f93d4272d
BLAKE2b-256 2f9ad6df2668d46d050ca51aeb59ddd9a990d1976cdada3e88f5209045f47a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ecb90d4b29f179b9afbe643c943f24b9eb065c8bf0af739bee1330e75973fcea
MD5 24c69238ed1df85c1e16d52ab15ab30b
BLAKE2b-256 6a951a5a86e343d7e46981c8d5c1371c4676b71af235dc04fa6ca78c4d248455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-3.2.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ab9ee7a74585b69a1b81f34e71d77332f85e013b5d8b6477fd9bbec779f239cf
MD5 5f5bbe93b865d9fbc4efe93e0a4b6448
BLAKE2b-256 74e17f8ae9ec00c36de554fab36f516732605c4966842a2a9231fdbae6e5f7d6

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page