extract-python 0.5.9__py3-none-any.whl → 0.5.11__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.
@@ -1,17 +1,24 @@
1
+ import logging
2
+
3
+ logger = logging.getLogger(__name__)
4
+
1
5
  try:
2
6
  from .docling_ import DOCLING_DEFAULT_ARTIFACTS_PATH, DoclingPipeline
3
- except ImportError:
7
+ except ModuleNotFoundError:
8
+ logger.exception("docling is not available, might be optional...")
4
9
  DOCKING_DEFAULT_ARTIFACTS_PATH, DoclingPipeline = None, None
5
10
 
6
11
  try:
7
12
  from .marker_ import MarkerPipeline
8
- except ImportError:
13
+ except ModuleNotFoundError:
14
+ logger.exception("marker is not available, might be optional...")
9
15
  MarkerPipeline = None
10
16
 
11
17
 
12
18
  try:
13
19
  from .miner_u import MinerUPipeline
14
- except ImportError:
20
+ except ModuleNotFoundError:
21
+ logger.exception("mineru is not available, might be optional...")
15
22
  MinerUPipeline = None
16
23
 
17
24
 
@@ -15,6 +15,7 @@ from docling_core.types.doc import ImageRefMode
15
15
  from docling_core.types.io import DocumentStream
16
16
  from extract_core import (
17
17
  BaseModel,
18
+ Device,
18
19
  DoclingFormatOption,
19
20
  DoclingPipelineConfig,
20
21
  Error,
@@ -27,7 +28,6 @@ from extract_core import (
27
28
  Result,
28
29
  Status,
29
30
  )
30
- from extract_core.objects import Device
31
31
  from icij_common.pydantic_utils import merge_configs
32
32
  from icij_common.registrable import FromConfig
33
33
  from pydantic import ConfigDict, field_serializer
extract_python/marker_.py CHANGED
@@ -6,13 +6,15 @@ from functools import cache
6
6
  from pathlib import Path
7
7
  from typing import TYPE_CHECKING, Any, ClassVar, Self
8
8
 
9
- from extract_core import BasePipelineConfig, Pipeline, PipelineType
10
- from extract_core.objects import (
9
+ from extract_core import (
10
+ BasePipelineConfig,
11
11
  Device,
12
12
  InputDoc,
13
13
  MarkdownDoc,
14
14
  OutputFormat,
15
15
  PageIndexes,
16
+ Pipeline,
17
+ PipelineType,
16
18
  Result,
17
19
  Status,
18
20
  SupportedExt,
extract_python/miner_u.py CHANGED
@@ -9,6 +9,7 @@ from typing import Self
9
9
 
10
10
  from extract_core import (
11
11
  ConversionOutput,
12
+ Device,
12
13
  InputDoc,
13
14
  MinerUBackend,
14
15
  MinerUConfig,
@@ -20,7 +21,6 @@ from extract_core import (
20
21
  Result,
21
22
  Status,
22
23
  )
23
- from extract_core.objects import Device
24
24
 
25
25
  from .constants import ARTIFACTS, DEFAULT_MD_PAGE_SEP
26
26
  from .utils import path_to_artifacts_dirname, reset_env
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: extract-python
3
- Version: 0.5.9
3
+ Version: 0.5.11
4
4
  Summary: Structured content extraction
5
5
  Project-URL: Homepage, https://github.com/ICIJ/extract-python
6
6
  Project-URL: Repository, https://github.com/ICIJ/extract-python
@@ -0,0 +1,9 @@
1
+ extract_python/__init__.py,sha256=DA2LUro6vMjfS8fb2MsqO95FbJEZHyZ7kFyn42q02Wk,759
2
+ extract_python/constants.py,sha256=Hxl2Bc-GJX71gjFgj3U7tRRA_nHhneoT6YPOx9CjYsc,94
3
+ extract_python/docling_.py,sha256=wkokKgAk2qa_tbvFBHWEcxtSn4XjYuEuNls57PpGN8I,7604
4
+ extract_python/marker_.py,sha256=oxN1unJ9x8YW5jds1STCc2wvQ30KzQNy3dXbCIuTuQc,5311
5
+ extract_python/miner_u.py,sha256=Ien3H7vZXLCACVjSMP2NAiog7yvvPq7oGgLGcfLZfpA,6159
6
+ extract_python/utils.py,sha256=HL-84NkjfJEiWp8GPRaJIiBL2Cywp4ABN41EkxYYnPI,2004
7
+ extract_python-0.5.11.dist-info/METADATA,sha256=-mkf27ftjSGmo3oTRsuhFLD2mMGVp5gXS_pl7Jzh_YY,1219
8
+ extract_python-0.5.11.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
9
+ extract_python-0.5.11.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- extract_python/__init__.py,sha256=CrqmcyLwD2JgtQNuGRIQ8wr1cWdlKkgMlCz_2reaPJo,470
2
- extract_python/constants.py,sha256=Hxl2Bc-GJX71gjFgj3U7tRRA_nHhneoT6YPOx9CjYsc,94
3
- extract_python/docling_.py,sha256=5q3JGJa8Jg8T8WL8MvufFkyILbD3G5mqtkV7HQed9zI,7632
4
- extract_python/marker_.py,sha256=CIqRvHbdm6Itb7RiOVZWBDx5IvXzBGHjmHsWQFXIMyw,5331
5
- extract_python/miner_u.py,sha256=2s2Pxj0wuW-kx1G9gRtHg_gkoPc-WQ31w8zmf_hr7rk,6187
6
- extract_python/utils.py,sha256=HL-84NkjfJEiWp8GPRaJIiBL2Cywp4ABN41EkxYYnPI,2004
7
- extract_python-0.5.9.dist-info/METADATA,sha256=EIPV5roPYVRFSH1nhW3o3TZ7jkUNgB4t8miEhQykL0Q,1218
8
- extract_python-0.5.9.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
9
- extract_python-0.5.9.dist-info/RECORD,,