python-hwpx 2.10.0__tar.gz → 2.10.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.
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/NOTICE +8 -0
- {python_hwpx-2.10.0/src/python_hwpx.egg-info → python_hwpx-2.10.1}/PKG-INFO +1 -1
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/pyproject.toml +1 -1
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/authoring.py +785 -27
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/core.py +267 -59
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/report.py +32 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/document.py +6 -8
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/package.py +5 -1
- python_hwpx-2.10.1/src/hwpx/oxml/body.py +766 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/document.py +65 -37
- python_hwpx-2.10.1/src/hwpx/oxml/namespaces.py +181 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/parser.py +7 -0
- python_hwpx-2.10.1/src/hwpx/tools/generic_inventory.py +156 -0
- python_hwpx-2.10.1/src/hwpx/tools/id_integrity.py +275 -0
- python_hwpx-2.10.1/src/hwpx/tools/report_parser.py +135 -0
- python_hwpx-2.10.1/src/hwpx/tools/report_utils.py +132 -0
- python_hwpx-2.10.1/src/hwpx/tools/roundtrip_diff.py +50 -0
- python_hwpx-2.10.1/src/hwpx/tools/table_cleanup.py +61 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/text_extractor.py +33 -25
- {python_hwpx-2.10.0 → python_hwpx-2.10.1/src/python_hwpx.egg-info}/PKG-INFO +1 -1
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/SOURCES.txt +17 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_builder_core.py +2 -2
- python_hwpx-2.10.1/tests/test_builder_plan_v2.py +308 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_builder_vertical_slice.py +1 -1
- python_hwpx-2.10.1/tests/test_coverage_promotion.py +405 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_plan.py +28 -0
- python_hwpx-2.10.1/tests/test_document_plan_computed_fields.py +137 -0
- python_hwpx-2.10.1/tests/test_government_report_preset.py +121 -0
- python_hwpx-2.10.1/tests/test_government_table_profile.py +78 -0
- python_hwpx-2.10.1/tests/test_id_integrity.py +93 -0
- python_hwpx-2.10.1/tests/test_namespace_handling.py +134 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_opc_package.py +16 -0
- python_hwpx-2.10.1/tests/test_report_parser.py +79 -0
- python_hwpx-2.10.1/tests/test_report_utils.py +56 -0
- python_hwpx-2.10.1/tests/test_roundtrip_fidelity.py +92 -0
- python_hwpx-2.10.1/tests/test_table_cleanup.py +49 -0
- python_hwpx-2.10.0/src/hwpx/oxml/body.py +0 -457
- python_hwpx-2.10.0/src/hwpx/oxml/namespaces.py +0 -50
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/LICENSE +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/README.md +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/setup.cfg +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/__init__.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/builder/__init__.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/data/Skeleton.hwpx +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/form_fill.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/relationships.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/opc/xml_utils.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/__init__.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/common.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/header.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/header_part.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/memo.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/paragraph.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/schema.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/section.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/table.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/oxml/utils.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/package.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/presets/__init__.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/presets/proposal.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/py.typed +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/template_formfit.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/templates.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/__init__.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/_schemas/header.xsd +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/_schemas/section.xsd +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/archive_cli.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/exporter.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/object_finder.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/package_validator.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/page_guard.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/recover.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/repair.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/table_navigation.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/template_analyzer.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/text_extract_cli.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/hwpx/tools/validator.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/dependency_links.txt +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/entry_points.txt +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/requires.txt +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/src/python_hwpx.egg-info/top_level.txt +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_coverage_targets.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_deviations_registry.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_context_manager.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_formatting.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_document_save_api.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_form_fill_split_run.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_gap_closure_tools.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_hp_tab_support.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_hwpxlib_corpus_read.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_id_generator_range.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_inline_models.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_integration_hwpx_compatibility.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_integration_roundtrip.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_memo_and_style_editing.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_new_features.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_oxml_parsing.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_packaging_license_metadata.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_packaging_py_typed.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_paragraph_section_management.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_proposal_preset.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_recover_broken_zip.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_repair_repack.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_repr_snapshots.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_section_headers.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_skeleton_template_ids.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_split_merged_cell.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_table_navigation.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_tables_default_border.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_template_formfit.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_text_extractor_annotations.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_validation_severity.py +0 -0
- {python_hwpx-2.10.0 → python_hwpx-2.10.1}/tests/test_version_metadata.py +0 -0
|
@@ -20,6 +20,14 @@ reimplemented from public references, without copying source code:
|
|
|
20
20
|
- sakada3/hwp-ops (Apache-2.0): split-run placeholder scan/fill behavior
|
|
21
21
|
ideas, charPrIDRef heterogeneity warning, and touched-paragraph layout-cache
|
|
22
22
|
invalidation.
|
|
23
|
+
- hancom-io/hwpx-owpml-model (Apache-2.0): C1 coverage promotion structure
|
|
24
|
+
observations for paragraph line segment elements (`linesegarray`, `lineseg`)
|
|
25
|
+
and rendering matrix elements (`transMatrix`, `scaMatrix`, `rotMatrix`) from
|
|
26
|
+
public model headers only.
|
|
27
|
+
- hancom-io/hwpx-owpml-model (Apache-2.0): C1b form-control promotion
|
|
28
|
+
structure observations for `edit`, `comboBox`, and button-family controls
|
|
29
|
+
from public model headers only. hwpxlib sample packages were used only as
|
|
30
|
+
structure and roundtrip fixtures.
|
|
23
31
|
|
|
24
32
|
These form-fill references were used as behavior evidence only. The
|
|
25
33
|
implementation is a clean-room Python implementation; no source code was
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-hwpx"
|
|
7
|
-
version = "2.10.
|
|
7
|
+
version = "2.10.1"
|
|
8
8
|
description = "한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리"
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
license = "Apache-2.0"
|