doctra 0.1.0__tar.gz → 0.1.1__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.
Files changed (51) hide show
  1. {doctra-0.1.0/doctra.egg-info → doctra-0.1.1}/PKG-INFO +5 -5
  2. {doctra-0.1.0 → doctra-0.1.1}/README.md +4 -4
  3. {doctra-0.1.0 → doctra-0.1.1}/doctra/version.py +1 -1
  4. {doctra-0.1.0 → doctra-0.1.1/doctra.egg-info}/PKG-INFO +5 -5
  5. {doctra-0.1.0 → doctra-0.1.1}/LICENSE +0 -0
  6. {doctra-0.1.0 → doctra-0.1.1}/MANIFEST.in +0 -0
  7. {doctra-0.1.0 → doctra-0.1.1}/doctra/__init__.py +0 -0
  8. {doctra-0.1.0 → doctra-0.1.1}/doctra/cli/__init__.py +0 -0
  9. {doctra-0.1.0 → doctra-0.1.1}/doctra/cli/main.py +0 -0
  10. {doctra-0.1.0 → doctra-0.1.1}/doctra/cli/utils.py +0 -0
  11. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/__init__.py +0 -0
  12. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/layout/__init__.py +0 -0
  13. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/layout/layout_models.py +0 -0
  14. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/layout/paddle_layout.py +0 -0
  15. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/ocr/__init__.py +0 -0
  16. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/ocr/api.py +0 -0
  17. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/ocr/path_resolver.py +0 -0
  18. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/ocr/pytesseract_engine.py +0 -0
  19. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/vlm/__init__.py +0 -0
  20. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/vlm/outlines_types.py +0 -0
  21. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/vlm/provider.py +0 -0
  22. {doctra-0.1.0 → doctra-0.1.1}/doctra/engines/vlm/service.py +0 -0
  23. {doctra-0.1.0 → doctra-0.1.1}/doctra/exporters/__init__.py +0 -0
  24. {doctra-0.1.0 → doctra-0.1.1}/doctra/exporters/excel_writer.py +0 -0
  25. {doctra-0.1.0 → doctra-0.1.1}/doctra/exporters/image_saver.py +0 -0
  26. {doctra-0.1.0 → doctra-0.1.1}/doctra/exporters/markdown_table.py +0 -0
  27. {doctra-0.1.0 → doctra-0.1.1}/doctra/exporters/markdown_writer.py +0 -0
  28. {doctra-0.1.0 → doctra-0.1.1}/doctra/parsers/__init__.py +0 -0
  29. {doctra-0.1.0 → doctra-0.1.1}/doctra/parsers/layout_order.py +0 -0
  30. {doctra-0.1.0 → doctra-0.1.1}/doctra/parsers/structured_pdf_parser.py +0 -0
  31. {doctra-0.1.0 → doctra-0.1.1}/doctra/parsers/table_chart_extractor.py +0 -0
  32. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/__init__.py +0 -0
  33. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/bbox.py +0 -0
  34. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/constants.py +0 -0
  35. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/file_ops.py +0 -0
  36. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/io_utils.py +0 -0
  37. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/ocr_utils.py +0 -0
  38. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/pdf_io.py +0 -0
  39. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/quiet.py +0 -0
  40. {doctra-0.1.0 → doctra-0.1.1}/doctra/utils/structured_utils.py +0 -0
  41. {doctra-0.1.0 → doctra-0.1.1}/doctra.egg-info/SOURCES.txt +0 -0
  42. {doctra-0.1.0 → doctra-0.1.1}/doctra.egg-info/dependency_links.txt +0 -0
  43. {doctra-0.1.0 → doctra-0.1.1}/doctra.egg-info/not-zip-safe +0 -0
  44. {doctra-0.1.0 → doctra-0.1.1}/doctra.egg-info/requires.txt +0 -0
  45. {doctra-0.1.0 → doctra-0.1.1}/doctra.egg-info/top_level.txt +0 -0
  46. {doctra-0.1.0 → doctra-0.1.1}/pyproject.toml +0 -0
  47. {doctra-0.1.0 → doctra-0.1.1}/requirements.txt +0 -0
  48. {doctra-0.1.0 → doctra-0.1.1}/setup.cfg +0 -0
  49. {doctra-0.1.0 → doctra-0.1.1}/setup.py +0 -0
  50. {doctra-0.1.0 → doctra-0.1.1}/tests/test_structured_pdf_parser.py +0 -0
  51. {doctra-0.1.0 → doctra-0.1.1}/tests/test_table_chart_extractor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: doctra
3
- Version: 0.1.0
3
+ Version: 0.1.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
@@ -256,13 +256,13 @@ Dynamic: requires-python
256
256
 
257
257
  # 🚀 **Doctra - Document Parser Library** 📑🔎
258
258
 
259
- ![Doctra_Logo.png](assets/Doctra_Logo.png)
259
+ ![Doctra Logo](https://raw.githubusercontent.com/AdemBoukhris457/Doctra/main/assets/Doctra_Logo.png)
260
260
 
261
261
  <div align="center">
262
262
 
263
- [![GitHub Stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/stargazers)
264
- [![GitHub Forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/forks)
265
-
263
+ [![stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
264
+ [![forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
265
+ [![PyPI version](https://img.shields.io/pypi/v/doctra)](https://pypi.org/project/doctra/)
266
266
  </div>
267
267
 
268
268
  ## 📋 Table of Contents
@@ -1,12 +1,12 @@
1
1
  # 🚀 **Doctra - Document Parser Library** 📑🔎
2
2
 
3
- ![Doctra_Logo.png](assets/Doctra_Logo.png)
3
+ ![Doctra Logo](https://raw.githubusercontent.com/AdemBoukhris457/Doctra/main/assets/Doctra_Logo.png)
4
4
 
5
5
  <div align="center">
6
6
 
7
- [![GitHub Stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/stargazers)
8
- [![GitHub Forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/forks)
9
-
7
+ [![stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
8
+ [![forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
9
+ [![PyPI version](https://img.shields.io/pypi/v/doctra)](https://pypi.org/project/doctra/)
10
10
  </div>
11
11
 
12
12
  ## 📋 Table of Contents
@@ -1,2 +1,2 @@
1
1
  """Version information for Doctra."""
2
- __version__ = '0.1.0'
2
+ __version__ = '0.1.1'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: doctra
3
- Version: 0.1.0
3
+ Version: 0.1.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
@@ -256,13 +256,13 @@ Dynamic: requires-python
256
256
 
257
257
  # 🚀 **Doctra - Document Parser Library** 📑🔎
258
258
 
259
- ![Doctra_Logo.png](assets/Doctra_Logo.png)
259
+ ![Doctra Logo](https://raw.githubusercontent.com/AdemBoukhris457/Doctra/main/assets/Doctra_Logo.png)
260
260
 
261
261
  <div align="center">
262
262
 
263
- [![GitHub Stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/stargazers)
264
- [![GitHub Forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra?style=social)](https://github.com/AdemBoukhris457/Doctra/forks)
265
-
263
+ [![stars](https://img.shields.io/github/stars/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
264
+ [![forks](https://img.shields.io/github/forks/AdemBoukhris457/Doctra.svg)](https://github.com/AdemBoukhris457/Doctra)
265
+ [![PyPI version](https://img.shields.io/pypi/v/doctra)](https://pypi.org/project/doctra/)
266
266
  </div>
267
267
 
268
268
  ## 📋 Table of Contents
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