docling 0.2.0__tar.gz → 0.3.0__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-0.2.0 → docling-0.3.0}/PKG-INFO +14 -8
- {docling-0.2.0 → docling-0.3.0}/README.md +12 -6
- {docling-0.2.0 → docling-0.3.0}/pyproject.toml +2 -2
- {docling-0.2.0 → docling-0.3.0}/LICENSE +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/backend/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/backend/abstract_backend.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/backend/pypdfium2_backend.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/datamodel/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/datamodel/base_models.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/datamodel/document.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/datamodel/settings.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/document_converter.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/ds_glm_model.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/easyocr_model.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/layout_model.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/page_assemble_model.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/models/table_structure_model.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/pipeline/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/pipeline/base_model_pipeline.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/pipeline/standard_model_pipeline.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/utils/__init__.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/utils/layout_utils.py +0 -0
- {docling-0.2.0 → docling-0.3.0}/docling/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: docling
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.0
|
4
4
|
Summary: Docling PDF conversion package
|
5
5
|
Home-page: https://github.com/DS4SD/docling
|
6
6
|
License: MIT
|
@@ -18,7 +18,7 @@ Classifier: Programming Language :: Python :: 3
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
20
20
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
21
|
-
Requires-Dist: deepsearch-glm (>=0.
|
21
|
+
Requires-Dist: deepsearch-glm (>=0.19.0,<1)
|
22
22
|
Requires-Dist: deepsearch-toolkit (>=0.47.0,<1)
|
23
23
|
Requires-Dist: docling-core (>=0.2.0,<0.3.0)
|
24
24
|
Requires-Dist: docling-ibm-models (>=0.2.0,<0.3.0)
|
@@ -46,9 +46,19 @@ Docling bundles PDF document conversion to JSON and Markdown in an easy, self-co
|
|
46
46
|
|
47
47
|
## Setup
|
48
48
|
|
49
|
-
|
49
|
+
For general usage, you can simply install `docling` through `pip` from the pypi package index.
|
50
|
+
```
|
51
|
+
pip install docling
|
52
|
+
```
|
53
|
+
|
54
|
+
**Notes**:
|
55
|
+
* Works on macOS and Linux environments. Windows platforms are currently not tested.
|
56
|
+
|
57
|
+
### Development setup
|
50
58
|
|
51
|
-
|
59
|
+
To develop for `docling`, you need Python 3.11 and `poetry`. Install poetry from [here](https://python-poetry.org/docs/#installing-with-the-official-installer).
|
60
|
+
|
61
|
+
Once you have `poetry` installed and cloned this repo, create an environment and install `docling` from the repo root:
|
52
62
|
|
53
63
|
```bash
|
54
64
|
poetry env use $(which python3.11)
|
@@ -56,10 +66,6 @@ poetry shell
|
|
56
66
|
poetry install
|
57
67
|
```
|
58
68
|
|
59
|
-
**Notes**:
|
60
|
-
* Works on macOS and Linux environments. Windows platforms are currently not tested.
|
61
|
-
|
62
|
-
|
63
69
|
## Usage
|
64
70
|
|
65
71
|
For basic usage, see the [convert.py](https://github.com/DS4SD/docling/blob/main/examples/convert.py) example module. Run with:
|
@@ -14,9 +14,19 @@ Docling bundles PDF document conversion to JSON and Markdown in an easy, self-co
|
|
14
14
|
|
15
15
|
## Setup
|
16
16
|
|
17
|
-
|
17
|
+
For general usage, you can simply install `docling` through `pip` from the pypi package index.
|
18
|
+
```
|
19
|
+
pip install docling
|
20
|
+
```
|
21
|
+
|
22
|
+
**Notes**:
|
23
|
+
* Works on macOS and Linux environments. Windows platforms are currently not tested.
|
24
|
+
|
25
|
+
### Development setup
|
18
26
|
|
19
|
-
|
27
|
+
To develop for `docling`, you need Python 3.11 and `poetry`. Install poetry from [here](https://python-poetry.org/docs/#installing-with-the-official-installer).
|
28
|
+
|
29
|
+
Once you have `poetry` installed and cloned this repo, create an environment and install `docling` from the repo root:
|
20
30
|
|
21
31
|
```bash
|
22
32
|
poetry env use $(which python3.11)
|
@@ -24,10 +34,6 @@ poetry shell
|
|
24
34
|
poetry install
|
25
35
|
```
|
26
36
|
|
27
|
-
**Notes**:
|
28
|
-
* Works on macOS and Linux environments. Windows platforms are currently not tested.
|
29
|
-
|
30
|
-
|
31
37
|
## Usage
|
32
38
|
|
33
39
|
For basic usage, see the [convert.py](https://github.com/DS4SD/docling/blob/main/examples/convert.py) example module. Run with:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "docling"
|
3
|
-
version = "0.
|
3
|
+
version = "0.3.0" # DO NOT EDIT, updated automatically
|
4
4
|
description = "Docling PDF conversion package"
|
5
5
|
authors = ["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>", "Peter Staar <taa@zurich.ibm.com>"]
|
6
6
|
license = "MIT"
|
@@ -25,7 +25,7 @@ python = "^3.11"
|
|
25
25
|
pydantic = "^2.0.0"
|
26
26
|
docling-core = "^0.2.0"
|
27
27
|
docling-ibm-models = "^0.2.0"
|
28
|
-
deepsearch-glm = ">=0.
|
28
|
+
deepsearch-glm = ">=0.19.0,<1"
|
29
29
|
deepsearch-toolkit = ">=0.47.0,<1"
|
30
30
|
filetype = "^1.2.0"
|
31
31
|
pypdfium2 = "^4.30.0"
|
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
|