docling 2.31.1__tar.gz → 2.31.2__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.
Potentially problematic release.
This version of docling might be problematic. Click here for more details.
- {docling-2.31.1 → docling-2.31.2}/PKG-INFO +2 -1
- {docling-2.31.1 → docling-2.31.2}/docling/backend/asciidoc_backend.py +1 -1
- {docling-2.31.1 → docling-2.31.2}/pyproject.toml +2 -1
- {docling-2.31.1 → docling-2.31.2}/LICENSE +0 -0
- {docling-2.31.1 → docling-2.31.2}/README.md +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/abstract_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/csv_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docling_parse_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docling_parse_v2_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docling_parse_v4_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docx/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docx/latex/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docx/latex/latex_dict.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/docx/latex/omml.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/html_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/json/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/json/docling_json_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/md_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/msexcel_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/mspowerpoint_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/msword_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/pdf_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/xml/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/xml/jats_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/backend/xml/uspto_backend.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/chunking/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/cli/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/cli/main.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/cli/models.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/cli/tools.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/datamodel/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/datamodel/base_models.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/datamodel/document.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/datamodel/pipeline_options.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/datamodel/settings.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/document_converter.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/exceptions.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/api_vlm_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/base_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/base_ocr_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/code_formula_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/document_picture_classifier.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/easyocr_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/factories/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/factories/base_factory.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/factories/ocr_factory.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/factories/picture_description_factory.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/hf_mlx_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/hf_vlm_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/layout_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/ocr_mac_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/page_assemble_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/page_preprocessing_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/picture_description_api_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/picture_description_base_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/picture_description_vlm_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/plugins/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/plugins/defaults.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/rapid_ocr_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/readingorder_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/table_structure_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/tesseract_ocr_cli_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/models/tesseract_ocr_model.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/pipeline/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/pipeline/base_pipeline.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/pipeline/simple_pipeline.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/pipeline/standard_pdf_pipeline.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/pipeline/vlm_pipeline.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/py.typed +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/__init__.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/accelerator_utils.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/api_image_request.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/export.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/glm_utils.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/layout_postprocessor.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/locks.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/model_downloader.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/ocr_utils.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/profiling.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/utils.py +0 -0
- {docling-2.31.1 → docling-2.31.2}/docling/utils/visualization.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: docling
|
|
3
|
-
Version: 2.31.
|
|
3
|
+
Version: 2.31.2
|
|
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
|
Home-page: https://github.com/docling-project/docling
|
|
6
6
|
License: MIT
|
|
@@ -28,6 +28,7 @@ Provides-Extra: vlm
|
|
|
28
28
|
Requires-Dist: accelerate (>=1.2.1,<2.0.0) ; (sys_platform != "darwin" or platform_machine != "x86_64") and (extra == "vlm")
|
|
29
29
|
Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
|
|
30
30
|
Requires-Dist: certifi (>=2024.7.4)
|
|
31
|
+
Requires-Dist: click (<8.2.0)
|
|
31
32
|
Requires-Dist: docling-core[chunking] (>=2.26.0,<3.0.0)
|
|
32
33
|
Requires-Dist: docling-ibm-models (>=3.4.0,<4.0.0)
|
|
33
34
|
Requires-Dist: docling-parse (>=4.0.0,<5.0.0)
|
|
@@ -287,7 +287,7 @@ class AsciiDocBackend(DeclarativeDocumentBackend):
|
|
|
287
287
|
|
|
288
288
|
# ========= Section headers
|
|
289
289
|
def _is_section_header(self, line):
|
|
290
|
-
return re.match(r"
|
|
290
|
+
return re.match(r"^==+\s+", line)
|
|
291
291
|
|
|
292
292
|
def _parse_section_header(self, line):
|
|
293
293
|
match = re.match(r"^(=+)\s+(.*)", line)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "docling"
|
|
3
|
-
version = "2.31.
|
|
3
|
+
version = "2.31.2" # 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
|
authors = [
|
|
6
6
|
"Christoph Auer <cau@zurich.ibm.com>",
|
|
@@ -90,6 +90,7 @@ pillow = ">=10.0.0,<12.0.0"
|
|
|
90
90
|
tqdm = "^4.65.0"
|
|
91
91
|
pluggy = "^1.0.0"
|
|
92
92
|
pylatexenc = "^2.10"
|
|
93
|
+
click = "<8.2.0"
|
|
93
94
|
|
|
94
95
|
[tool.poetry.group.dev.dependencies]
|
|
95
96
|
python = "^3.9.2"
|
|
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
|