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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

docling_parse-2.0.5-pp39-pypy39_pp73-win_amd64.whl (24.9 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.13 Windows x86-64

docling_parse-2.0.5-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.5-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.5-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.5-cp313-cp313-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.13 macOS 14.0+ ARM64

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

Uploaded CPython 3.13 macOS 13.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

docling_parse-2.0.5-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.5-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.5-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.5-cp312-cp312-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.12 macOS 14.0+ ARM64

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

Uploaded CPython 3.12 macOS 13.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

docling_parse-2.0.5-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.5-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.5-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.5-cp311-cp311-macosx_14_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.11 macOS 14.0+ ARM64

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

Uploaded CPython 3.11 macOS 13.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

docling_parse-2.0.5-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.5-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.5-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.5-cp310-cp310-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.10 macOS 14.0+ ARM64

docling_parse-2.0.5-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.5-cp310-cp310-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.10 macOS 13.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

docling_parse-2.0.5-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-2.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (22.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

docling_parse-2.0.5-cp39-cp39-macosx_14_0_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.9 macOS 14.0+ x86-64

docling_parse-2.0.5-cp39-cp39-macosx_14_0_arm64.whl (21.8 MB view details)

Uploaded CPython 3.9 macOS 14.0+ ARM64

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

Uploaded CPython 3.9 macOS 13.0+ x86-64

docling_parse-2.0.5-cp39-cp39-macosx_13_0_arm64.whl (21.9 MB view details)

Uploaded CPython 3.9 macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: docling_parse-2.0.5.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.5.tar.gz
Algorithm Hash digest
SHA256 09ac1fff90ab2cb942ad70eee59213a48b737e2df002186e8253b439c0ea9285
MD5 e01c6bc4b804c8dd6f493ab4a881e7cd
BLAKE2b-256 87f8cf3d4b739f3c48da368c26a466cfa25155d734184f2e096268380a73daff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7ad900a581f404d219b2f7a87aa17321936e5ae1ae7f3fd4fc30801dab9f36d0
MD5 09ae578acac262688e7f7db9b64cdde0
BLAKE2b-256 084d108036a648f978fb986777b5e2f08590bdf4e7f3478a713e875d0560d2c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 96391070723ac954fcef1841e473f1c875b76208717cb4789694e2c37e46066c
MD5 da1e0ada0bc5d9f2e25e25bb23424489
BLAKE2b-256 14d9a319238ef1d24ec911b91846c8e6c4407ceab3c65aa54087f4b609453433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9adac3989b93c13f5030d537a7d49ee9e34564e49995b6dccbbb3d7f5431601a
MD5 708a4383ed4482c89560efa4ebfe26ac
BLAKE2b-256 03ba8e9a08ab4e49913e2a65024c219f7f8aaca0b3b21a06e38b86a6b8fead5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18d5acd255c15c3e570f1aeb0c2600905237baf20786df6b01f065f49ad7d413
MD5 d81e39174cb9e3d446cf97d41b578c44
BLAKE2b-256 d1d578e1e6966858a68a3a925436ce7d168c5c0607c1f3508b37e1ed5dac9426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daa8ddb6ad2bc140e735f405cc22a19b99cb493fdb244424cd29544f78c823be
MD5 111017390b5d067501866a07f1d523a8
BLAKE2b-256 13df90e18e9785f66c3af22d7186054b1d868f2a9f7b1806d96ef4042fbbedfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 5d1cd612f41a482318cb098904229fec1d55de36e30442063105bd892df7e729
MD5 2b43242e37611ed5b4a78215438f0b87
BLAKE2b-256 6f3cefc15b573bcfcdef7a804768bdc6cedd041923e0bdc5fceed4ac27a338dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8fbf564bf3ae5abc1422a391013048eaa8ead00f4876dd8b2fa7fd6e8538d622
MD5 339c0bc99d73a61c2f527c85d260da62
BLAKE2b-256 6fbea684f8d29ccfdff12b5d514263afb4a5df94c505451dd173cfd4c98cfafe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 33f1ea27629f8ac3956edc27453be06612d9455e80827431545b754be9039edd
MD5 022528f107b5354722d60d0a52bcf407
BLAKE2b-256 11746301fcc6203a58c5ca826570752f4a03065a009317a7482d44f89b559bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 287c5466f121499d3352bb7f8255d7eb7c39d7d32f9424357d32993f2655322e
MD5 be304c39c97edf22bae1ff7761e715c6
BLAKE2b-256 c988d24730866cc50f9829a2dd02c7520be421a65ef11d5b76a1bdd2cd479dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b5ba90818ab3cdfb623d4ce3c65949956e0c3dba6c58ede0d142703ec0b88e5
MD5 5d0696721c28366fc04649d5cf4b7c9d
BLAKE2b-256 091c5d13ac70cc545d387d0cb21e1edf58ed8cff6798999b48677d962520517a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e62d080c1b01a60049384d2f7c3b0484c61f894068a779c19b69034a44d8ed6f
MD5 3c7711feaa5dcb3d62fbc29799c67adb
BLAKE2b-256 8ddff4fc68941d5a1dd78e7b9f9b9f7a89ac6ab634f1c45b5616b65f3fe8ce77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3b2e3bb31e3d6319fb9be8a7b424ddd514a34d5f28fd5e6e83bd45a7f1e5687
MD5 dd83a740ea3b05ef973811b75eedb232
BLAKE2b-256 bb119def774caa732ee57d1afc4e665c3b528de76af87024a8d1863cfb9be0e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ac195e295b95e6cf5f06b54caabf610952115419dcd1d79f4bfea8b83fa4269f
MD5 750ad6346fad2c15dd93737b112f4e97
BLAKE2b-256 d4838638329d3e46c5bc6b2fda68e454ccce4a68cb527b71471c747b20ac2973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2a256718a2833fba8da7508548e0421f7f17ec3183c1afc1046a9de1f006ff86
MD5 c9c8287bacdd0b629bf811c6b5107cbd
BLAKE2b-256 adadf8bef74cae0a554c9d6f613a4ddf800bbb670f73a508fb6fdcfd0439d016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dee45459109e05f39b0d8be434b56dd44e2d6b79dbd2c2840c7e8a55881d80ae
MD5 b4188f3bf2641a2784cfd9c3532b625d
BLAKE2b-256 600fd57722a23ddf435dddd2d69ca06577c72e54f980c6e92bbaef47574aca49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 47a60672148e228b97ed26d6abaf72b4157bb66338be6eaacb9838fe20ae88d3
MD5 46c2aa29afdbe783a0251bf451514b98
BLAKE2b-256 0f107b02468c4bd3c57555d1c6c4a5db3fb1060b6ff4c49e033e929001acd046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ff6698b75e5e83ea6740b383bbe29d01fc8db7a73625e83e3ab4f24391a0fa1
MD5 35157a71c75f99b13edf234c7c34408c
BLAKE2b-256 36d1f44fb5ce23cb3b6981c4ba4c8bf273164b75998d9652e6b183a65ee1d645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e3e9af47e64e61ecff7e7b4ba648604b1fb4d7d3a75ea6121308a9f7aece4ea
MD5 7bfb357e0a99f0718ca067516b9f20ed
BLAKE2b-256 bd9018fa5c803196d9d3648f5674e99d26b4eab74da331939e282f6fb3907042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96439c99a52181b1ac7ddc3754a93a08251103e79bf98d763fb36a0012576969
MD5 222c497b70e9b66f663b90d58da9e845
BLAKE2b-256 81d5b61cc9aef3981c0b1a85fd739934617d3b2a170adcfab69b187ac9974ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 31f941457ba583a078115d4f64e414fb6b08d62c8208e6f42df8b55cd4eb2dd5
MD5 50544030749738f7ee833e90c5fd13e8
BLAKE2b-256 06fc51d6ed2770f7886a166242e9f46abcbf2fdb2e22028bdc7a2cc9b95fc636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 07c5caf808dad544a03955ef80411c42193d4c347100e7767eb2e4bf8fcc7c2a
MD5 2ba85306abf903b2bffe072d24d80c8e
BLAKE2b-256 cc065a9d528d93b3fa60eb7f6d0e7c2b400ae3c3c3a63ef462a788efce3de2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d7b96bf3f0d8c97fbabc23dcb3c6b7f91b68653c2d04ed74cbb2d7f808165296
MD5 53b5320ed5f62560927058dfb7b45528
BLAKE2b-256 aaae25b9cd554be93abd4546e35b597a6cb92fcbfc08d8a8e246d573b091d30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a61ca5cd4d3d6336e9ee7ead3184943e6e01e880efb892b64c8796933c3b2965
MD5 9739434f3d00ed521bc24f08a32969d5
BLAKE2b-256 10ee8d9da67cf8ab252c6a4317ea9016203e9f08d4fdb9805afbf3ac3eb30af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 362f3050e4bba93921054086993050897ba9a40e0ea00e0fd55f5776e14db7fc
MD5 6d243e6a7bdc54f256a3ecb3acfc298e
BLAKE2b-256 1baf0cadc44a377995b03ce7658d7f1bbd2080439c34b3531ccf6a28d0cc453d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89d50bb7e2e4509320c41252ec6f07e627ced12f78d8dbd908385aed5c878f2f
MD5 d1902cc98ba64547f0e22e1de92f06ed
BLAKE2b-256 5eaddd1428545f60c3a8ccc407ac98bd48f20f70358f87d21fe083d810b7f54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3a5afd88f39bdec3ea4c91bdf94c53789182d304832532aa8352a17cd6f847a
MD5 3b971e9a79a1448724ebbb971db0223b
BLAKE2b-256 973cb58b79477e9153903658e5ee3ebe095837371ae7a77d52cc5f558e3ee405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 6c31c0fac1ed2807d58ed3b61b73fd7a631430d862e1a7f9f1c32838a35578bc
MD5 b09da036b4a1b51f9ecca02814180d05
BLAKE2b-256 708d6ef42acd3d8807120023f286fa776bda5c2b2b0669acae7e521201cef929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fe372cd1ac79966c166be52e31dd0807cb3ead76a86177a00911cc3d6758a403
MD5 2b3db69b64443f950526d4c7b9206c3a
BLAKE2b-256 721956997fb881e71b662d176b33ba61663fbca0aae132e775d3960688a95a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9be80f15f922eb71c27fa0ea6b028504a1b5d762f580dee99e82ee1edb6534e7
MD5 8d4866a633c2ea2545d552cdb6d56d92
BLAKE2b-256 035b865add7d189b43738b3b2479a6c76736753e01a4aa9b3a3fbe960a05add8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8e35b43fecba970d5d86ab44a176761e868a77195d023ec8a7d9ab40625e8bf2
MD5 d170606c40603c4a5da9da631d9b0acd
BLAKE2b-256 ed39bebb6788fbbfa938afedf806121ec810469e588167f8c9a064ffea0fb876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e839adabfcb5ad9f5c1baf4d5a8acd6c85799a440b7809481c4ab161e8a1d063
MD5 e0642a7f3739945d296cfcada9e71391
BLAKE2b-256 9c436c9a97911dcba60cd621d64b20a46589c400ce95a1e86dad69edd014bf2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c654e484dc239fc2f588ca5368e8db68931a22eadb97a8d14693e3cfa7d2fe2
MD5 1588d2123fc4914c2548535963712f58
BLAKE2b-256 9f18f1892c2b2a24533ecb11f6609731dc865a4df94a5a1f7d014585aba1f095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a2f68a02267bd5467460330d317956d22a90b3cb63f0c83346a97d018eff161
MD5 307fb0aa76c6f115c28d33442ec00d48
BLAKE2b-256 fa2c033687cf52cfb5e1a44be8bbba53071175c6d90980c2ec27b1e597ebbca6

See more details on using hashes here.

File details

Details for the file docling_parse-2.0.5-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 0d1e17826231aaaf7283e20dc47ac7e11d881d663e3ae79c8b552a144a191570
MD5 8f8eeced149c4b06d2b1f1c4a25c20c2
BLAKE2b-256 a02171c08e4626f63dfa9ae87af7b6ab797c93df3cc6fe2e785437bb1fa55ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6943cd9562a298b5eb9e92be0cb5b023eca5290aecbc36411d54e7bb753beb9d
MD5 676d312639a16ed074a796f9915abf7f
BLAKE2b-256 897004dd26eddb3f908a2c8e4c178adb9ccf0e6ba57f6925c39949a05a82c348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4b69f47859e34959878874c82e723fff235a47250404a71a996c71b8a44f5664
MD5 4e4eec8a9aa4b73c6a7d9d66f68d5d66
BLAKE2b-256 a7c6eaff7f670f1f5fb9e6fc7efd7c8344256140ffeebe53506a4c595edb281b

See more details on using hashes here.

File details

Details for the file docling_parse-2.0.5-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for docling_parse-2.0.5-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6b41f153626df3616270478d2b293888b6c79b9dc3fbd9581ca964c5ab246d9c
MD5 31bbf19b2d56e0b8515df47e190de62e
BLAKE2b-256 a73f341bbb03209acaa16ce65cc15428c149fe6fa180d1481541f51f4589131a

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