doctra 0.3.0__py3-none-any.whl → 0.3.1__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.
- doctra/version.py +1 -1
- {doctra-0.3.0.dist-info → doctra-0.3.1.dist-info}/METADATA +29 -3
- {doctra-0.3.0.dist-info → doctra-0.3.1.dist-info}/RECORD +6 -6
- {doctra-0.3.0.dist-info → doctra-0.3.1.dist-info}/WHEEL +0 -0
- {doctra-0.3.0.dist-info → doctra-0.3.1.dist-info}/licenses/LICENSE +0 -0
- {doctra-0.3.0.dist-info → doctra-0.3.1.dist-info}/top_level.txt +0 -0
doctra/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""Version information for Doctra."""
|
2
|
-
__version__ = '0.3.
|
2
|
+
__version__ = '0.3.1'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: doctra
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.1
|
4
4
|
Summary: Parse, extract, and analyze documents with ease
|
5
5
|
Home-page: https://github.com/AdemBoukhris457/Doctra
|
6
6
|
Author: Adem Boukhris
|
@@ -234,6 +234,9 @@ Requires-Dist: opencv-python>=4.5.0
|
|
234
234
|
Requires-Dist: pandas>=1.3.0
|
235
235
|
Requires-Dist: openpyxl>=3.0.0
|
236
236
|
Requires-Dist: tesseract>=0.1.3
|
237
|
+
Requires-Dist: pytesseract>=0.3.10
|
238
|
+
Requires-Dist: pdf2image>=1.16.0
|
239
|
+
Requires-Dist: anthropic>=0.40.0
|
237
240
|
Requires-Dist: outlines>=0.0.34
|
238
241
|
Requires-Dist: tqdm>=4.62.0
|
239
242
|
Requires-Dist: matplotlib>=3.5.0
|
@@ -241,8 +244,6 @@ Provides-Extra: openai
|
|
241
244
|
Requires-Dist: openai>=1.0.0; extra == "openai"
|
242
245
|
Provides-Extra: gemini
|
243
246
|
Requires-Dist: google-generativeai>=0.3.0; extra == "gemini"
|
244
|
-
Provides-Extra: anthropic
|
245
|
-
Requires-Dist: anthropic>=0.40.0; extra == "anthropic"
|
246
247
|
Provides-Extra: dev
|
247
248
|
Requires-Dist: pytest>=6.0; extra == "dev"
|
248
249
|
Requires-Dist: pytest-cov>=2.0; extra == "dev"
|
@@ -295,6 +296,31 @@ cd Doctra
|
|
295
296
|
pip install .
|
296
297
|
```
|
297
298
|
|
299
|
+
### System Dependencies
|
300
|
+
|
301
|
+
Doctra requires **Poppler** for PDF processing. Install it based on your operating system:
|
302
|
+
|
303
|
+
#### Ubuntu/Debian
|
304
|
+
```bash
|
305
|
+
sudo apt install poppler-utils
|
306
|
+
```
|
307
|
+
|
308
|
+
#### macOS
|
309
|
+
```bash
|
310
|
+
brew install poppler
|
311
|
+
```
|
312
|
+
|
313
|
+
#### Windows
|
314
|
+
Download and install from [Poppler for Windows](http://blog.alivate.com.au/poppler-windows/) or use conda:
|
315
|
+
```bash
|
316
|
+
conda install -c conda-forge poppler
|
317
|
+
```
|
318
|
+
|
319
|
+
#### Google Colab
|
320
|
+
```bash
|
321
|
+
!sudo apt install poppler-utils
|
322
|
+
```
|
323
|
+
|
298
324
|
## ⚡ Quick Start
|
299
325
|
|
300
326
|
```python
|
@@ -1,5 +1,5 @@
|
|
1
1
|
doctra/__init__.py,sha256=ST_c2GWBoB0y_wpL1qsOeK4bR1RyJhMMn6I5VjVRI6Y,613
|
2
|
-
doctra/version.py,sha256=
|
2
|
+
doctra/version.py,sha256=BDWZqR8pRPnlsqLDR4Kx91MC6A9OwylJHhHemdaa6DQ,60
|
3
3
|
doctra/cli/__init__.py,sha256=4PTujjYRShOOUlZ7PwuWckShPWLC4v4CYIhJpzgyv1k,911
|
4
4
|
doctra/cli/main.py,sha256=o_W1b5kx3xaTbWK6l4IYi0YLwffKBj5pQKflnlaG2Fw,35611
|
5
5
|
doctra/cli/utils.py,sha256=IghiUZQCOmXODC5-5smHGz2KeV4xqbP4avmA1Mggln0,11800
|
@@ -37,8 +37,8 @@ doctra/utils/pdf_io.py,sha256=c8EY47Z1iqVtlLFHS_n0qGuXJ5ERFaMUd84ivXV0b9E,706
|
|
37
37
|
doctra/utils/progress.py,sha256=sNEjTdN32J1-eXFPqwZRw2EZQ1SXSesXBd5StJvtlmc,14481
|
38
38
|
doctra/utils/quiet.py,sha256=5XPS-1CtJ0sVk6qgSQctdhr_wR8mP1xoJLoUbmkXROA,387
|
39
39
|
doctra/utils/structured_utils.py,sha256=J-qTqo8eCjm36FaRJ_I482LFgYCpm3eukZm-gbNnchw,1401
|
40
|
-
doctra-0.3.
|
41
|
-
doctra-0.3.
|
42
|
-
doctra-0.3.
|
43
|
-
doctra-0.3.
|
44
|
-
doctra-0.3.
|
40
|
+
doctra-0.3.1.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
41
|
+
doctra-0.3.1.dist-info/METADATA,sha256=2-2aMiNRvofe2WYuYejI6NqSkVctiH5SLK-EX4nIjaE,28298
|
42
|
+
doctra-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
43
|
+
doctra-0.3.1.dist-info/top_level.txt,sha256=jI7E8jHci2gP9y0GYaWxlg9jG0O5n3FjHJJPLXDXMds,7
|
44
|
+
doctra-0.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|