docling 2.36.0__tar.gz → 2.36.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {docling-2.36.0 → docling-2.36.1}/PKG-INFO +2 -3
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/PKG-INFO +2 -3
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/requires.txt +1 -2
- {docling-2.36.0 → docling-2.36.1}/pyproject.toml +2 -3
- {docling-2.36.0 → docling-2.36.1}/LICENSE +0 -0
- {docling-2.36.0 → docling-2.36.1}/README.md +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/abstract_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/asciidoc_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/csv_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docling_parse_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docling_parse_v2_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docling_parse_v4_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docx/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docx/latex/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docx/latex/latex_dict.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/docx/latex/omml.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/html_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/json/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/json/docling_json_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/md_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/msexcel_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/mspowerpoint_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/msword_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/pdf_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/xml/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/xml/jats_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/backend/xml/uspto_backend.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/chunking/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/cli/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/cli/main.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/cli/models.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/cli/tools.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/accelerator_options.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/base_models.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/document.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/pipeline_options.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/pipeline_options_vlm_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/settings.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/datamodel/vlm_model_specs.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/document_converter.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/exceptions.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/api_vlm_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/base_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/base_ocr_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/code_formula_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/document_picture_classifier.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/easyocr_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/factories/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/factories/base_factory.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/factories/ocr_factory.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/factories/picture_description_factory.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/layout_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/ocr_mac_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/page_assemble_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/page_preprocessing_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/picture_description_api_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/picture_description_base_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/picture_description_vlm_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/plugins/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/plugins/defaults.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/rapid_ocr_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/readingorder_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/table_structure_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/tesseract_ocr_cli_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/tesseract_ocr_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/utils/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/utils/hf_model_download.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/vlm_models_inline/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/vlm_models_inline/hf_transformers_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/models/vlm_models_inline/mlx_model.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/pipeline/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/pipeline/base_pipeline.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/pipeline/simple_pipeline.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/pipeline/standard_pdf_pipeline.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/pipeline/vlm_pipeline.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/py.typed +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/__init__.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/accelerator_utils.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/api_image_request.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/export.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/glm_utils.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/layout_postprocessor.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/locks.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/model_downloader.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/ocr_utils.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/orientation.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/profiling.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/utils.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling/utils/visualization.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/SOURCES.txt +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/dependency_links.txt +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/entry_points.txt +0 -0
- {docling-2.36.0 → docling-2.36.1}/docling.egg-info/top_level.txt +0 -0
- {docling-2.36.0 → docling-2.36.1}/setup.cfg +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_asciidoc.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_csv.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_docling_json.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_docling_parse.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_docling_parse_v2.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_docling_parse_v4.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_html.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_jats.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_markdown.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_msexcel.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_msword.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_patent_uspto.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_pdfium.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_pptx.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_backend_webp.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_cli.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_code_formula.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_data_gen_flag.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_document_picture_classifier.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_e2e_conversion.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_e2e_ocr_conversion.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_input_doc.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_interfaces.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_invalid_input.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_legacy_format_transform.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_options.py +0 -0
- {docling-2.36.0 → docling-2.36.1}/tests/test_settings_load.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: docling
|
3
|
-
Version: 2.36.
|
3
|
+
Version: 2.36.1
|
4
4
|
Summary: SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications.
|
5
5
|
Author-email: Christoph Auer <cau@zurich.ibm.com>, Michele Dolfi <dol@zurich.ibm.com>, Maxim Lysak <mly@zurich.ibm.com>, Nikos Livathinos <nli@zurich.ibm.com>, Ahmed Nassar <ahn@zurich.ibm.com>, Panos Vagenas <pva@zurich.ibm.com>, Peter Staar <taa@zurich.ibm.com>
|
6
6
|
License-Expression: MIT
|
@@ -37,7 +37,7 @@ Requires-Dist: requests<3.0.0,>=2.32.2
|
|
37
37
|
Requires-Dist: easyocr<2.0,>=1.7
|
38
38
|
Requires-Dist: certifi>=2024.7.4
|
39
39
|
Requires-Dist: rtree<2.0.0,>=1.3.0
|
40
|
-
Requires-Dist: typer<0.
|
40
|
+
Requires-Dist: typer<0.17.0,>=0.12.5
|
41
41
|
Requires-Dist: python-docx<2.0.0,>=1.1.2
|
42
42
|
Requires-Dist: python-pptx<2.0.0,>=1.0.2
|
43
43
|
Requires-Dist: beautifulsoup4<5.0.0,>=4.12.3
|
@@ -49,7 +49,6 @@ Requires-Dist: pillow<12.0.0,>=10.0.0
|
|
49
49
|
Requires-Dist: tqdm<5.0.0,>=4.65.0
|
50
50
|
Requires-Dist: pluggy<2.0.0,>=1.0.0
|
51
51
|
Requires-Dist: pylatexenc<3.0,>=2.10
|
52
|
-
Requires-Dist: click<8.2.0
|
53
52
|
Requires-Dist: scipy<2.0.0,>=1.6.0
|
54
53
|
Provides-Extra: tesserocr
|
55
54
|
Requires-Dist: tesserocr<3.0.0,>=2.7.1; extra == "tesserocr"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: docling
|
3
|
-
Version: 2.36.
|
3
|
+
Version: 2.36.1
|
4
4
|
Summary: SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications.
|
5
5
|
Author-email: Christoph Auer <cau@zurich.ibm.com>, Michele Dolfi <dol@zurich.ibm.com>, Maxim Lysak <mly@zurich.ibm.com>, Nikos Livathinos <nli@zurich.ibm.com>, Ahmed Nassar <ahn@zurich.ibm.com>, Panos Vagenas <pva@zurich.ibm.com>, Peter Staar <taa@zurich.ibm.com>
|
6
6
|
License-Expression: MIT
|
@@ -37,7 +37,7 @@ Requires-Dist: requests<3.0.0,>=2.32.2
|
|
37
37
|
Requires-Dist: easyocr<2.0,>=1.7
|
38
38
|
Requires-Dist: certifi>=2024.7.4
|
39
39
|
Requires-Dist: rtree<2.0.0,>=1.3.0
|
40
|
-
Requires-Dist: typer<0.
|
40
|
+
Requires-Dist: typer<0.17.0,>=0.12.5
|
41
41
|
Requires-Dist: python-docx<2.0.0,>=1.1.2
|
42
42
|
Requires-Dist: python-pptx<2.0.0,>=1.0.2
|
43
43
|
Requires-Dist: beautifulsoup4<5.0.0,>=4.12.3
|
@@ -49,7 +49,6 @@ Requires-Dist: pillow<12.0.0,>=10.0.0
|
|
49
49
|
Requires-Dist: tqdm<5.0.0,>=4.65.0
|
50
50
|
Requires-Dist: pluggy<2.0.0,>=1.0.0
|
51
51
|
Requires-Dist: pylatexenc<3.0,>=2.10
|
52
|
-
Requires-Dist: click<8.2.0
|
53
52
|
Requires-Dist: scipy<2.0.0,>=1.6.0
|
54
53
|
Provides-Extra: tesserocr
|
55
54
|
Requires-Dist: tesserocr<3.0.0,>=2.7.1; extra == "tesserocr"
|
@@ -10,7 +10,7 @@ requests<3.0.0,>=2.32.2
|
|
10
10
|
easyocr<2.0,>=1.7
|
11
11
|
certifi>=2024.7.4
|
12
12
|
rtree<2.0.0,>=1.3.0
|
13
|
-
typer<0.
|
13
|
+
typer<0.17.0,>=0.12.5
|
14
14
|
python-docx<2.0.0,>=1.1.2
|
15
15
|
python-pptx<2.0.0,>=1.0.2
|
16
16
|
beautifulsoup4<5.0.0,>=4.12.3
|
@@ -22,7 +22,6 @@ pillow<12.0.0,>=10.0.0
|
|
22
22
|
tqdm<5.0.0,>=4.65.0
|
23
23
|
pluggy<2.0.0,>=1.0.0
|
24
24
|
pylatexenc<3.0,>=2.10
|
25
|
-
click<8.2.0
|
26
25
|
scipy<2.0.0,>=1.6.0
|
27
26
|
|
28
27
|
[ocrmac]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "docling"
|
3
|
-
version = "2.36.
|
3
|
+
version = "2.36.1" # DO NOT EDIT, updated automatically
|
4
4
|
description = "SDK and CLI for parsing PDF, DOCX, HTML, and more, to a unified document representation for powering downstream workflows such as gen AI applications."
|
5
5
|
license = "MIT"
|
6
6
|
keywords = [
|
@@ -55,7 +55,7 @@ dependencies = [
|
|
55
55
|
'easyocr (>=1.7,<2.0)',
|
56
56
|
'certifi (>=2024.7.4)',
|
57
57
|
'rtree (>=1.3.0,<2.0.0)',
|
58
|
-
'typer (>=0.12.5,<0.
|
58
|
+
'typer (>=0.12.5,<0.17.0)',
|
59
59
|
'python-docx (>=1.1.2,<2.0.0)',
|
60
60
|
'python-pptx (>=1.0.2,<2.0.0)',
|
61
61
|
'beautifulsoup4 (>=4.12.3,<5.0.0)',
|
@@ -67,7 +67,6 @@ dependencies = [
|
|
67
67
|
'tqdm (>=4.65.0,<5.0.0)',
|
68
68
|
'pluggy (>=1.0.0,<2.0.0)',
|
69
69
|
'pylatexenc (>=2.10,<3.0)',
|
70
|
-
'click (<8.2.0)',
|
71
70
|
'scipy (>=1.6.0,<2.0.0)',
|
72
71
|
# 'scipy (>=1.6.0,<2.0.0) ; python_version >= "3.10"',
|
73
72
|
# 'scipy (>=1.6.0,<1.14.0) ; python_version < "3.10"',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|