natural-pdf 0.1.31__py3-none-any.whl → 0.1.32__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,7 +1,21 @@
1
1
  """
2
- Analyzers for natural-pdf.
2
+ Analyzers for natural_pdf.
3
3
  """
4
4
 
5
- from .layout import *
6
- from .text_structure import TextStyleAnalyzer
7
- from .utils import convert_to_regions
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
+ ]