docling-core 2.48.4__py3-none-any.whl → 2.49.0__py3-none-any.whl

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-core might be problematic. Click here for more details.

@@ -40,6 +40,7 @@ from docling_core.types.doc.document import (
40
40
  ContentLayer,
41
41
  DescriptionAnnotation,
42
42
  DocItem,
43
+ DocItemLabel,
43
44
  DoclingDocument,
44
45
  FloatingItem,
45
46
  Formatting,
@@ -140,6 +141,10 @@ class MarkdownTextSerializer(BaseModel, BaseTextSerializer):
140
141
  text = item.text
141
142
  processing_pending = True
142
143
 
144
+ if item.label == DocItemLabel.CHECKBOX_SELECTED:
145
+ text = f"- [x] {text}"
146
+ if item.label == DocItemLabel.CHECKBOX_UNSELECTED:
147
+ text = f"- [ ] {text}"
143
148
  if isinstance(item, (ListItem, TitleItem, SectionHeaderItem)):
144
149
  if not has_inline_repr:
145
150
  # case where processing/formatting should be applied first (in inner scope)
@@ -2267,7 +2267,7 @@ class DoclingDocument(BaseModel):
2267
2267
  if not success:
2268
2268
  del to_be_deleted_items[stack_]
2269
2269
  else:
2270
- _logger.info(f"deleted item in tree at stack: {stack_} => {ref_}")
2270
+ _logger.debug(f"deleted item in tree at stack: {stack_} => {ref_}")
2271
2271
 
2272
2272
  # Create a new lookup of the orphans:
2273
2273
  # dict of item_label (`texts`, `tables`, ...) to a
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: docling-core
3
- Version: 2.48.4
3
+ Version: 2.49.0
4
4
  Summary: A python library to define and validate data types in Docling.
5
5
  Author-email: Cesar Berrospi Ramis <ceb@zurich.ibm.com>, Panos Vagenas <pva@zurich.ibm.com>, Michele Dolfi <dol@zurich.ibm.com>, Christoph Auer <cau@zurich.ibm.com>, Peter Staar <taa@zurich.ibm.com>
6
6
  Maintainer-email: Panos Vagenas <pva@zurich.ibm.com>, Michele Dolfi <dol@zurich.ibm.com>, Christoph Auer <cau@zurich.ibm.com>, Peter Staar <taa@zurich.ibm.com>, Cesar Berrospi Ramis <ceb@zurich.ibm.com>
@@ -15,12 +15,17 @@ Classifier: Intended Audience :: Developers
15
15
  Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Natural Language :: English
17
17
  Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python :: 3
19
18
  Classifier: Topic :: Database
20
19
  Classifier: Topic :: Scientific/Engineering :: Information Analysis
21
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
21
  Classifier: Typing :: Typed
23
22
  Classifier: Programming Language :: Python :: 3
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: 3.14
24
29
  Requires-Python: <4.0,>=3.9
25
30
  Description-Content-Type: text/markdown
26
31
  License-File: LICENSE
@@ -29,7 +34,7 @@ Requires-Dist: pydantic!=2.10.0,!=2.10.1,!=2.10.2,<3.0.0,>=2.6.0
29
34
  Requires-Dist: jsonref<2.0.0,>=1.1.0
30
35
  Requires-Dist: tabulate<0.10.0,>=0.9.0
31
36
  Requires-Dist: pandas<3.0.0,>=2.1.4
32
- Requires-Dist: pillow<12.0.0,>=10.0.0
37
+ Requires-Dist: pillow<13.0.0,>=10.0.0
33
38
  Requires-Dist: pyyaml<7.0.0,>=5.1
34
39
  Requires-Dist: typing-extensions<5.0.0,>=4.12.2
35
40
  Requires-Dist: typer<0.20.0,>=0.12.5
@@ -39,7 +44,7 @@ Requires-Dist: semchunk<3.0.0,>=2.2.0; extra == "chunking"
39
44
  Requires-Dist: transformers<5.0.0,>=4.34.0; extra == "chunking"
40
45
  Provides-Extra: chunking-openai
41
46
  Requires-Dist: semchunk; extra == "chunking-openai"
42
- Requires-Dist: tiktoken<0.10.0,>=0.9.0; extra == "chunking-openai"
47
+ Requires-Dist: tiktoken<0.13.0,>=0.9.0; extra == "chunking-openai"
43
48
  Dynamic: license-file
44
49
 
45
50
  # Docling Core
@@ -32,7 +32,7 @@ docling_core/transforms/serializer/common.py,sha256=vfJhu0b4vAcIres85PX774RQSTKu
32
32
  docling_core/transforms/serializer/doctags.py,sha256=9_aV_ffTOTtQKZQTKz_I3kRTQ_GXHCePKwXnR-rnggA,20644
33
33
  docling_core/transforms/serializer/html.py,sha256=h0yiDgTNIeOS-rJaMRfinUFgrZygd3MjheM7pjLw5F0,38380
34
34
  docling_core/transforms/serializer/html_styles.py,sha256=-jBwS4EU7yfKoz0GSoxhwx90OmIKieO6TwPw57IuxcA,4692
35
- docling_core/transforms/serializer/markdown.py,sha256=Hgs4EbMoHDW2PNCKViAKnAJQuLdIPyghL5S6vpAL-b4,24333
35
+ docling_core/transforms/serializer/markdown.py,sha256=wz8Tu1Npm6eRqOLgr2r2M4vRF7MjirnTDITsNDwyjgA,24537
36
36
  docling_core/transforms/visualizer/__init__.py,sha256=gUfF25yiJ_KO46ZIUNqZQOZGy2PLx6gnnr6AZYxKHXI,35
37
37
  docling_core/transforms/visualizer/base.py,sha256=aEF7b3rHq6DVdX8zDYEPoq55BHDYe4Hh_97lBdcW4lY,555
38
38
  docling_core/transforms/visualizer/key_value_visualizer.py,sha256=fp7nFLy4flOSiavdRgg5y1Mu7WVLIDGh1zEHsq8kgVM,8979
@@ -43,7 +43,7 @@ docling_core/types/__init__.py,sha256=MVRSgsk5focwGyAplh_TRR3dEecIXpd98g_u3zZ5HX
43
43
  docling_core/types/base.py,sha256=PusJskRVL19y-hq0BgXr5e8--QEqSqLnFNJ8UbOqW88,8318
44
44
  docling_core/types/doc/__init__.py,sha256=Vsl3oJV3_BLpS7rIwvahhcWOwmEBvj7ZbQzQCCl-IQk,1678
45
45
  docling_core/types/doc/base.py,sha256=i98y4IF250adR-8BSS374K90fwfwG-vBfWh14tLC5Cs,15906
46
- docling_core/types/doc/document.py,sha256=WF-orjfoUQvijrV9krvG5e52O3lw4KjMwOHnSVgu0yU,203030
46
+ docling_core/types/doc/document.py,sha256=wfXpCeLYjbFK-CWXd2S2g6o4kGp6RlFmvWT8Ighg0io,203031
47
47
  docling_core/types/doc/labels.py,sha256=-W1-LW6z0J9F9ExJqR0Wd1WeqWTaY3Unm-j1UkQGlC4,7330
48
48
  docling_core/types/doc/page.py,sha256=35h1xdtCM3-AaN8Dim9jDseZIiw-3GxpB-ofF-H2rQQ,41878
49
49
  docling_core/types/doc/tokens.py,sha256=z22l9J81_sg9CYMvOuLmPuLsNT7h_s7wao2UT89DvI8,9278
@@ -76,9 +76,9 @@ docling_core/utils/generate_jsonschema.py,sha256=uNX1O5XnjyB5nA66XqZXTt3YbGuR2ty
76
76
  docling_core/utils/legacy.py,sha256=G7ed8fkBpIO8hG3DKEY83cHsrKJHyvDst_1jSdgBXMI,24406
77
77
  docling_core/utils/validate.py,sha256=aQ11UbFyl8iD_N7yTTZmm_VVeXz8KcCyn3GLXgkfYRM,2049
78
78
  docling_core/utils/validators.py,sha256=azcrndLzhNkTWnbFSu9shJ5D3j_znnLrIFA5R8hzmGU,2798
79
- docling_core-2.48.4.dist-info/licenses/LICENSE,sha256=2M9-6EoQ1sxFztTOkXGAtwUDJvnWaAHdB9BYWVwGkIw,1087
80
- docling_core-2.48.4.dist-info/METADATA,sha256=oKK8rik9CbY1FpnPdCmm54yIFsx7fK9kxqYvU9jy4NM,6453
81
- docling_core-2.48.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
- docling_core-2.48.4.dist-info/entry_points.txt,sha256=ER4zROQWkFMHIrY-oqY5E4HeCcCIg8dLkNztYGxdb7c,59
83
- docling_core-2.48.4.dist-info/top_level.txt,sha256=O-tcXpGiurlud-1ZxMq1b-OmrfAVA4sajcgWU32RtfA,13
84
- docling_core-2.48.4.dist-info/RECORD,,
79
+ docling_core-2.49.0.dist-info/licenses/LICENSE,sha256=2M9-6EoQ1sxFztTOkXGAtwUDJvnWaAHdB9BYWVwGkIw,1087
80
+ docling_core-2.49.0.dist-info/METADATA,sha256=AhdsSpLsthpPzu08h9fv3EUdkEh3JHlqDdN1-FEX910,6710
81
+ docling_core-2.49.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
82
+ docling_core-2.49.0.dist-info/entry_points.txt,sha256=ER4zROQWkFMHIrY-oqY5E4HeCcCIg8dLkNztYGxdb7c,59
83
+ docling_core-2.49.0.dist-info/top_level.txt,sha256=O-tcXpGiurlud-1ZxMq1b-OmrfAVA4sajcgWU32RtfA,13
84
+ docling_core-2.49.0.dist-info/RECORD,,