python-hwpx 2.9.1__py3-none-any.whl → 2.10.0__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.
hwpx/__init__.py CHANGED
@@ -27,15 +27,53 @@ from .tools.text_extractor import (
27
27
  from .tools.object_finder import FoundElement, ObjectFinder
28
28
  from .document import HwpxDocument
29
29
  from .package import HwpxPackage
30
+ from .authoring import (
31
+ AUTHORING_REPORT_VERSION,
32
+ DEFAULT_STYLE_PRESET,
33
+ DOCUMENT_PLAN_SCHEMA_VERSION,
34
+ DocumentBlock,
35
+ DocumentPlan,
36
+ DocumentStylePreset,
37
+ PlanValidationIssue,
38
+ PlanValidationReport,
39
+ create_document_from_plan,
40
+ inspect_document_authoring_quality,
41
+ inspect_operating_plan_quality,
42
+ normalize_document_plan,
43
+ validate_document_plan,
44
+ )
45
+ from .template_formfit import (
46
+ TEMPLATE_FORMFIT_BASELINE_SCHEMA_VERSION,
47
+ TEMPLATE_FORMFIT_PLAN_SCHEMA_VERSION,
48
+ analyze_template_formfit,
49
+ apply_template_formfit,
50
+ )
30
51
 
31
52
  __all__ = [
32
53
  "__version__",
54
+ "AUTHORING_REPORT_VERSION",
33
55
  "DEFAULT_NAMESPACES",
56
+ "DEFAULT_STYLE_PRESET",
57
+ "DOCUMENT_PLAN_SCHEMA_VERSION",
58
+ "DocumentBlock",
59
+ "DocumentPlan",
60
+ "DocumentStylePreset",
34
61
  "ParagraphInfo",
62
+ "PlanValidationReport",
35
63
  "SectionInfo",
64
+ "TEMPLATE_FORMFIT_BASELINE_SCHEMA_VERSION",
65
+ "TEMPLATE_FORMFIT_PLAN_SCHEMA_VERSION",
36
66
  "TextExtractor",
37
67
  "FoundElement",
38
68
  "ObjectFinder",
69
+ "PlanValidationIssue",
39
70
  "HwpxDocument",
40
71
  "HwpxPackage",
72
+ "create_document_from_plan",
73
+ "analyze_template_formfit",
74
+ "apply_template_formfit",
75
+ "inspect_document_authoring_quality",
76
+ "inspect_operating_plan_quality",
77
+ "normalize_document_plan",
78
+ "validate_document_plan",
41
79
  ]