natural-pdf 0.1.31__py3-none-any.whl → 0.1.33__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.
- natural_pdf/analyzers/__init__.py +18 -4
- natural_pdf/analyzers/guides.py +2176 -0
- natural_pdf/analyzers/shape_detection_mixin.py +0 -650
- natural_pdf/core/element_manager.py +99 -40
- natural_pdf/core/page.py +76 -3
- natural_pdf/core/pdf.py +38 -3
- natural_pdf/elements/collections.py +61 -0
- natural_pdf/elements/region.py +270 -14
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/METADATA +1 -1
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/RECORD +14 -18
- bad_pdf_analysis/analyze_10_more.py +0 -300
- bad_pdf_analysis/analyze_final_10.py +0 -552
- bad_pdf_analysis/analyze_specific_pages.py +0 -394
- bad_pdf_analysis/analyze_specific_pages_direct.py +0 -382
- tools/rtl_smoke_test.py +0 -80
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/WHEEL +0 -0
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/entry_points.txt +0 -0
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/licenses/LICENSE +0 -0
- {natural_pdf-0.1.31.dist-info → natural_pdf-0.1.33.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,21 @@
|
|
1
1
|
"""
|
2
|
-
Analyzers for
|
2
|
+
Analyzers for natural_pdf.
|
3
3
|
"""
|
4
4
|
|
5
|
-
from .layout import
|
6
|
-
from .
|
7
|
-
from .
|
5
|
+
from natural_pdf.analyzers.layout.layout_analyzer import LayoutAnalyzer
|
6
|
+
from natural_pdf.analyzers.layout.layout_manager import LayoutManager
|
7
|
+
from natural_pdf.analyzers.layout.layout_options import LayoutOptions
|
8
|
+
from natural_pdf.analyzers.shape_detection_mixin import ShapeDetectionMixin
|
9
|
+
from natural_pdf.analyzers.text_options import TextStyleOptions
|
10
|
+
from natural_pdf.analyzers.text_structure import TextStyleAnalyzer
|
11
|
+
from natural_pdf.analyzers.guides import Guides
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
"LayoutAnalyzer",
|
15
|
+
"LayoutManager",
|
16
|
+
"LayoutOptions",
|
17
|
+
"ShapeDetectionMixin",
|
18
|
+
"TextStyleOptions",
|
19
|
+
"TextStyleAnalyzer",
|
20
|
+
"Guides",
|
21
|
+
]
|