python-hwpx 2.29.2__tar.gz → 3.1.0__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.29.2/src/python_hwpx.egg-info → python_hwpx-3.1.0}/PKG-INFO +16 -5
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/README.md +15 -4
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/pyproject.toml +1 -1
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/__init__.py +26 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/catalog.py +85 -0
- python_hwpx-3.1.0/src/hwpx/agent/form_plan.py +1685 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/model.py +24 -2
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/table_patch.py +148 -9
- {python_hwpx-2.29.2 → python_hwpx-3.1.0/src/python_hwpx.egg-info}/PKG-INFO +16 -5
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/python_hwpx.egg-info/SOURCES.txt +4 -26
- python_hwpx-3.1.0/tests/test_agent_mixed_form.py +726 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_evalplan_fill.py +35 -0
- python_hwpx-3.1.0/tests/test_mixed_form_plan.py +426 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_packaging_py_typed.py +4 -0
- python_hwpx-3.1.0/tests/test_public_runtime_boundary.py +12 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_table_patch.py +44 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_table_patch_m105.py +31 -0
- python_hwpx-2.29.2/src/hwpx/practice/__init__.py +0 -277
- python_hwpx-2.29.2/src/hwpx/practice/aggregate.py +0 -947
- python_hwpx-2.29.2/src/hwpx/practice/campaign.py +0 -296
- python_hwpx-2.29.2/src/hwpx/practice/domain.py +0 -3137
- python_hwpx-2.29.2/src/hwpx/practice/dossier.py +0 -78
- python_hwpx-2.29.2/src/hwpx/practice/evaluator.py +0 -2359
- python_hwpx-2.29.2/src/hwpx/practice/forge.py +0 -436
- python_hwpx-2.29.2/src/hwpx/practice/intake.py +0 -230
- python_hwpx-2.29.2/src/hwpx/practice/lineage.py +0 -113
- python_hwpx-2.29.2/src/hwpx/practice/mutations.py +0 -168
- python_hwpx-2.29.2/src/hwpx/practice/registry.py +0 -322
- python_hwpx-2.29.2/src/hwpx/practice/run.py +0 -757
- python_hwpx-2.29.2/src/hwpx/practice/sanitize.py +0 -154
- python_hwpx-2.29.2/src/hwpx/practice/scenario.py +0 -146
- python_hwpx-2.29.2/src/hwpx/practice/split.py +0 -249
- python_hwpx-2.29.2/tests/test_practice_campaign_aggregate.py +0 -870
- python_hwpx-2.29.2/tests/test_practice_contracts.py +0 -255
- python_hwpx-2.29.2/tests/test_practice_domain_evaluator.py +0 -2134
- python_hwpx-2.29.2/tests/test_practice_evaluator.py +0 -2094
- python_hwpx-2.29.2/tests/test_practice_intake.py +0 -214
- python_hwpx-2.29.2/tests/test_practice_run_contracts.py +0 -422
- python_hwpx-2.29.2/tests/test_practice_sanitize.py +0 -75
- python_hwpx-2.29.2/tests/test_practice_scenario_forge.py +0 -73
- python_hwpx-2.29.2/tests/test_practice_scenario_pack.py +0 -170
- python_hwpx-2.29.2/tests/test_practice_source_integrity.py +0 -128
- python_hwpx-2.29.2/tests/test_practice_split.py +0 -85
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/LICENSE +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/NOTICE +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/setup.cfg +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/bundle.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/catalog.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/dump.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/mapping.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/model.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/native.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/blueprint/replay.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/cli.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/commands.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/document.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/path.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/agent/query.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/authoring.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/benchmark/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/benchmark/blind_eval.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/body_patch.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/builder/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/builder/core.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/builder/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/badges.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/corpus/corpus.json +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/corpus/meeting_summary.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/corpus/notice.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/corpus/report_table.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/corpus.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/roundtrip_batch.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/conformance/runner.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/data/Skeleton.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/_support.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/composer.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/harvest.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/plan.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/fragments/body.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/fragments/heading.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/fragments/info_table.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/fragments/title.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/profile.json +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/application_form/template.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/home_notice/fragments/body.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/home_notice/fragments/heading.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/home_notice/fragments/title.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/home_notice/profile.json +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/home_notice/template.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/fragments/body.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/fragments/heading.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/fragments/info_table.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/fragments/title.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/profile.json +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/official_notice/template.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/fragments/body.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/fragments/heading.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/fragments/info_table.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/fragments/title.xml +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/profile.json +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/profiles/report/template.hwpx +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/design/validator.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/document.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/evalplan_fill.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/compose.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/ir.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/measure.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/parser.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/exam/profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/fill_residue.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fill.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/apply.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/engine.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/measure.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/policy.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/seal.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/form_fit/wordbox.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/formfill_quality.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/guidance_scan.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/ingest/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/ingest/base.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/ingest/hwpx_converter.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/layout/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/layout/lint.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/layout/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/opc/package.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/opc/relationships.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/opc/security.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/opc/xml_utils.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/_document_impl.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/body.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/canonical_defaults.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/common.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/document.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/header.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/header_part.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/memo.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/namespaces.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/numbering.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/objects.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/paragraph.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/parser.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/run.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/schema.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/section.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/simple_parts.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/table.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/oxml/utils.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/package.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/patch.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/presets/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/presets/proposal.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/py.typed +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/quality/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/quality/ledger.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/quality/policy.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/quality/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/quality/save_pipeline.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/template_formfit.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/templates.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/_schemas/header.xsd +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/_schemas/section.xsd +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/advanced_generators.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/archive_cli.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/doc_diff.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/exporter.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/__main__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/catalog.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/generator.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/minimize.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/fuzz/runner.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/generic_inventory.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/id_integrity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/idempotence.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/ir_equality.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/layout_preview.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/mail_merge.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/markdown_export.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/object_finder.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/official_lint.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/package_reconcile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/package_validator.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/page_guard.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/pii.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/read_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/recover.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/redline.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/repair.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/report_parser.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/report_utils.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/roundtrip_diff.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/style_profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/table_cleanup.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/table_compute.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/table_navigation.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/template_analyzer.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/text_extract_cli.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/text_extractor.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/toc_author.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/toc_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/tools/validator.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/__init__.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/_hancom_open_rate.ps1 +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/_refresh_hwpx_mac.applescript +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/_render_hwpx.ps1 +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/_render_hwpx_mac.applescript +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/detectors.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/diff.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/fixture_corpus.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/hancom_worker.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/masks.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/oracle.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/page_qa.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/qa_contracts.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/qa_metrics.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/hwpx/visual/report.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/python_hwpx.egg-info/dependency_links.txt +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/python_hwpx.egg-info/entry_points.txt +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/python_hwpx.egg-info/requires.txt +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/src/python_hwpx.egg-info/top_level.txt +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_advanced_generators.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_blueprint_contracts.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_blueprint_dump.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_blueprint_replay.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_catalog.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_cli.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_commands.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_contracts.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_document.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_agent_path_query.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_authoring_profile_routing.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_authoring_profile_routing_oracle.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_authoring_render_check.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_blind_eval_fixture.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_body_patch.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_builder_core.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_builder_plan_v2.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_builder_vertical_slice.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_cell_line_spacing.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_comment_node_robustness.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_conformance.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_corpus_read_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_coverage_promotion.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_coverage_targets.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_design_builder.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_deviations_registry.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_doc_diff.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_document_context_manager.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_document_formatting.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_document_plan.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_document_plan_computed_fields.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_document_save_api.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_compose.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_compose_oracle.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_fixtures.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_ir.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_measure.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_parser.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_exam_profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_existing_document_format_editing.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_fill_residue.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fields.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fill_split_run.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fit.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fit_integration.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fit_seal.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fit_seal_placement.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_form_fit_wordbox.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_formfill_quality.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_fuzz_loop.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_fuzz_regressions.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_gap_closure_tools.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_government_report_preset.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_government_table_profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_guidance_scan.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_hancom_render_worker.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_hp_tab_support.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_hwpxlib_corpus_read.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_id_generator_range.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_id_integrity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_image_object_workflow.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_ingest.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_inline_models.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_integration_hwpx_compatibility.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_integration_roundtrip.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_kordoc_absorption.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_layout_lint.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_layout_preview.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_mail_merge_fit.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_mail_merge_table_compute.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_mail_merge_xlsx.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_markdown_export.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_memo_and_style_editing.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_namespace_handling.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_new_features.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_official_document_style.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_official_lint_gongmun_gate.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_official_lint_tableaware.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_opc_package.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_open_safety_corpus.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_openrate.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_oxml_parsing.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_packaging_license_metadata.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_paragraph_keep_together.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_paragraph_section_management.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_pii.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_pii_structural.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_pii_wiring.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_proposal_preset.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_question_split_detector.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_read_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_recover_broken_zip.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_redline_authoring.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_redline_verify.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_repair_repack.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_report_parser.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_report_utils.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_repr_snapshots.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_rhwp_t1_gates.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_rhwp_t2_verification.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_roundtrip_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_row_heights.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_save_pipeline.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_save_pipeline_no_bypass.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_section_headers.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_set_paragraph_format_keep.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_skeleton_template_ids.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_split_cell.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_split_merged_cell.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_style_profile.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_table_cleanup.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_table_navigation.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_table_patch_dryrun.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_tables_default_border.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_template_analyzer_enrichment.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_template_formfit.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_text_extractor_annotations.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_toc_author.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_toc_fidelity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_validation_severity.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_validator_comment_nodes.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_version_metadata.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_visual_fixture_corpus.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_visual_oracle.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_visual_qa_contracts.py +0 -0
- {python_hwpx-2.29.2 → python_hwpx-3.1.0}/tests/test_visual_qa_metrics.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-hwpx
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.1.0
|
|
4
4
|
Summary: 한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리
|
|
5
5
|
Author: python-hwpx Maintainers
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -46,7 +46,7 @@ Dynamic: license-file
|
|
|
46
46
|
<p align="center">
|
|
47
47
|
<h1 align="center">python-hwpx</h1>
|
|
48
48
|
<p align="center">
|
|
49
|
-
<strong>한글 없이 HWPX 문서를 Python으로 읽고, 편집하고, 생성하고, 검증합니다.</strong>
|
|
49
|
+
<strong>한글 없이 HWPX 문서를 Python으로 읽고, 편집하고, 생성하고, 구조를 검증합니다.</strong>
|
|
50
50
|
</p>
|
|
51
51
|
<p align="center">
|
|
52
52
|
<a href="https://pypi.org/project/python-hwpx/"><img src="https://img.shields.io/pypi/v/python-hwpx?color=blue&label=PyPI" alt="PyPI"></a>
|
|
@@ -64,15 +64,26 @@ Dynamic: license-file
|
|
|
64
64
|
|---|---|---|
|
|
65
65
|
| 📦 라이브러리 | **[`python-hwpx`](https://github.com/airmang/python-hwpx)** | 순수 파이썬 HWPX 파싱·편집·생성 코어 |
|
|
66
66
|
| 🔌 MCP 서버 | [`hwpx-mcp-server`](https://github.com/airmang/hwpx-mcp-server) | MCP 클라이언트(Claude Desktop, VS Code 등)에서 HWPX 조작 |
|
|
67
|
-
| 🎯 에이전트 스킬 | [`hwpx-
|
|
67
|
+
| 🎯 에이전트 스킬 | [`hwpx-plugin`](https://github.com/airmang/hwpx-plugins) | 에이전트가 HWPX를 바로 쓰게 해주는 first-party 플러그인·스킬 번들 |
|
|
68
|
+
|
|
69
|
+
`python-hwpx`는 HWPX 파싱·편집·생성을 제공하는 코어 라이브러리이며,
|
|
70
|
+
`hwpx-mcp-server`와 `hwpx-plugin`은 같은 프로젝트가 직접 유지보수하는 first-party 연동 구성요소입니다.
|
|
71
|
+
“first-party”는 프로젝트 유지보수 관계를 뜻하며, 한컴 또는 제3자의 공식 인증을 뜻하지 않습니다.
|
|
72
|
+
|
|
73
|
+
현재 공개 릴리스와 최소 호환 코어 버전은 모두 `python-hwpx 3.1.0`입니다.
|
|
74
|
+
현재 패키지 분류는 `Development Status :: 3 - Alpha`입니다. 이 분류는 API와 제품의
|
|
75
|
+
성숙도를 나타내며, 공개 버전이나 플러그인의 최소 호환 버전을 대신하지 않습니다.
|
|
68
76
|
|
|
69
77
|
---
|
|
70
78
|
|
|
71
79
|
## 왜 python-hwpx인가
|
|
72
80
|
|
|
73
|
-
-
|
|
81
|
+
- **코어 편집에 한컴오피스 설치 불필요** — HWPX는 ZIP+XML(OWPML/OPC) 구조라, 순수 파이썬으로 Windows·macOS·Linux·CI 어디서나 읽고 씁니다.
|
|
74
82
|
- **읽기부터 생성까지 한 코어** — 텍스트/서식 추출, 문단·표·양식 편집, 새 문서 생성, XSD 스키마 검증을 하나의 API로 처리합니다.
|
|
75
|
-
- **에이전트·자동화 친화** — 같은
|
|
83
|
+
- **에이전트·자동화 친화** — 같은 프로젝트가 유지보수하는 `hwpx-mcp-server`와 `hwpx-plugin`이 코어에 연결됩니다.
|
|
84
|
+
|
|
85
|
+
문서 파싱·편집·생성은 순수 Python으로 수행할 수 있습니다. 다만 페이지 나눔, 표 넘침,
|
|
86
|
+
글꼴 대체 등 최종 시각 품질을 확언하려면 필요에 따라 실제 한컴 렌더 오라클을 별도로 사용합니다.
|
|
76
87
|
|
|
77
88
|
## 빠른 시작
|
|
78
89
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<h1 align="center">python-hwpx</h1>
|
|
3
3
|
<p align="center">
|
|
4
|
-
<strong>한글 없이 HWPX 문서를 Python으로 읽고, 편집하고, 생성하고, 검증합니다.</strong>
|
|
4
|
+
<strong>한글 없이 HWPX 문서를 Python으로 읽고, 편집하고, 생성하고, 구조를 검증합니다.</strong>
|
|
5
5
|
</p>
|
|
6
6
|
<p align="center">
|
|
7
7
|
<a href="https://pypi.org/project/python-hwpx/"><img src="https://img.shields.io/pypi/v/python-hwpx?color=blue&label=PyPI" alt="PyPI"></a>
|
|
@@ -19,15 +19,26 @@
|
|
|
19
19
|
|---|---|---|
|
|
20
20
|
| 📦 라이브러리 | **[`python-hwpx`](https://github.com/airmang/python-hwpx)** | 순수 파이썬 HWPX 파싱·편집·생성 코어 |
|
|
21
21
|
| 🔌 MCP 서버 | [`hwpx-mcp-server`](https://github.com/airmang/hwpx-mcp-server) | MCP 클라이언트(Claude Desktop, VS Code 등)에서 HWPX 조작 |
|
|
22
|
-
| 🎯 에이전트 스킬 | [`hwpx-
|
|
22
|
+
| 🎯 에이전트 스킬 | [`hwpx-plugin`](https://github.com/airmang/hwpx-plugins) | 에이전트가 HWPX를 바로 쓰게 해주는 first-party 플러그인·스킬 번들 |
|
|
23
|
+
|
|
24
|
+
`python-hwpx`는 HWPX 파싱·편집·생성을 제공하는 코어 라이브러리이며,
|
|
25
|
+
`hwpx-mcp-server`와 `hwpx-plugin`은 같은 프로젝트가 직접 유지보수하는 first-party 연동 구성요소입니다.
|
|
26
|
+
“first-party”는 프로젝트 유지보수 관계를 뜻하며, 한컴 또는 제3자의 공식 인증을 뜻하지 않습니다.
|
|
27
|
+
|
|
28
|
+
현재 공개 릴리스와 최소 호환 코어 버전은 모두 `python-hwpx 3.1.0`입니다.
|
|
29
|
+
현재 패키지 분류는 `Development Status :: 3 - Alpha`입니다. 이 분류는 API와 제품의
|
|
30
|
+
성숙도를 나타내며, 공개 버전이나 플러그인의 최소 호환 버전을 대신하지 않습니다.
|
|
23
31
|
|
|
24
32
|
---
|
|
25
33
|
|
|
26
34
|
## 왜 python-hwpx인가
|
|
27
35
|
|
|
28
|
-
-
|
|
36
|
+
- **코어 편집에 한컴오피스 설치 불필요** — HWPX는 ZIP+XML(OWPML/OPC) 구조라, 순수 파이썬으로 Windows·macOS·Linux·CI 어디서나 읽고 씁니다.
|
|
29
37
|
- **읽기부터 생성까지 한 코어** — 텍스트/서식 추출, 문단·표·양식 편집, 새 문서 생성, XSD 스키마 검증을 하나의 API로 처리합니다.
|
|
30
|
-
- **에이전트·자동화 친화** — 같은
|
|
38
|
+
- **에이전트·자동화 친화** — 같은 프로젝트가 유지보수하는 `hwpx-mcp-server`와 `hwpx-plugin`이 코어에 연결됩니다.
|
|
39
|
+
|
|
40
|
+
문서 파싱·편집·생성은 순수 Python으로 수행할 수 있습니다. 다만 페이지 나눔, 표 넘침,
|
|
41
|
+
글꼴 대체 등 최종 시각 품질을 확언하려면 필요에 따라 실제 한컴 렌더 오라클을 별도로 사용합니다.
|
|
31
42
|
|
|
32
43
|
## 빠른 시작
|
|
33
44
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-hwpx"
|
|
7
|
-
version = "
|
|
7
|
+
version = "3.1.0"
|
|
8
8
|
description = "한글 없이 HWPX 문서를 열고, 편집하고, 생성하고, 검증하는 Python 자동화 라이브러리"
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -18,6 +18,20 @@ from .model import (
|
|
|
18
18
|
from .catalog import agent_catalog, agent_json_schemas, catalog_hash, human_help, node_help
|
|
19
19
|
from .commands import apply_document_commands
|
|
20
20
|
from .document import HwpxAgentDocument, NodeRecord
|
|
21
|
+
from .form_plan import (
|
|
22
|
+
MIXED_FORM_COMPILED_PLAN_SCHEMA,
|
|
23
|
+
MIXED_FORM_LOCATOR_KINDS,
|
|
24
|
+
MIXED_FORM_PLAN_SCHEMA,
|
|
25
|
+
MIXED_FORM_REQUEST_SCHEMA,
|
|
26
|
+
MixedFormPlan,
|
|
27
|
+
MixedFormResolution,
|
|
28
|
+
apply_mixed_form_fill,
|
|
29
|
+
apply_mixed_form_plan,
|
|
30
|
+
mixed_form_json_schemas,
|
|
31
|
+
plan_mixed_form_fill,
|
|
32
|
+
validate_mixed_form_plan,
|
|
33
|
+
validate_mixed_form_request,
|
|
34
|
+
)
|
|
21
35
|
from .path import PathSegment, SemanticPath, canonicalize_path, parse_path
|
|
22
36
|
from .query import QueryResult, SemanticSelector, parse_selector
|
|
23
37
|
from .blueprint import (
|
|
@@ -52,6 +66,10 @@ __all__ = [
|
|
|
52
66
|
"AGENT_COMMAND_SCHEMA",
|
|
53
67
|
"AGENT_ERROR_SCHEMA",
|
|
54
68
|
"AGENT_NODE_SCHEMA",
|
|
69
|
+
"MIXED_FORM_COMPILED_PLAN_SCHEMA",
|
|
70
|
+
"MIXED_FORM_LOCATOR_KINDS",
|
|
71
|
+
"MIXED_FORM_PLAN_SCHEMA",
|
|
72
|
+
"MIXED_FORM_REQUEST_SCHEMA",
|
|
55
73
|
"BLUEPRINT_CATALOG_SCHEMA",
|
|
56
74
|
"BLUEPRINT_REPLAY_RESULT_SCHEMA",
|
|
57
75
|
"BLUEPRINT_REPLAY_SCHEMA",
|
|
@@ -65,6 +83,8 @@ __all__ = [
|
|
|
65
83
|
"BlueprintBundle",
|
|
66
84
|
"BlueprintDumpResult",
|
|
67
85
|
"HwpxAgentDocument",
|
|
86
|
+
"MixedFormPlan",
|
|
87
|
+
"MixedFormResolution",
|
|
68
88
|
"NodeRecord",
|
|
69
89
|
"PathSegment",
|
|
70
90
|
"QueryResult",
|
|
@@ -74,6 +94,8 @@ __all__ = [
|
|
|
74
94
|
"agent_json_schemas",
|
|
75
95
|
"agent_contract_manifest",
|
|
76
96
|
"apply_document_commands",
|
|
97
|
+
"apply_mixed_form_fill",
|
|
98
|
+
"apply_mixed_form_plan",
|
|
77
99
|
"blueprint_catalog",
|
|
78
100
|
"blueprint_catalog_hash",
|
|
79
101
|
"blueprint_hash",
|
|
@@ -84,15 +106,19 @@ __all__ = [
|
|
|
84
106
|
"canonicalize_path",
|
|
85
107
|
"catalog_hash",
|
|
86
108
|
"human_help",
|
|
109
|
+
"mixed_form_json_schemas",
|
|
87
110
|
"node_help",
|
|
88
111
|
"parse_path",
|
|
89
112
|
"parse_selector",
|
|
113
|
+
"plan_mixed_form_fill",
|
|
90
114
|
"dump_document_blueprint",
|
|
91
115
|
"read_blueprint_bundle",
|
|
92
116
|
"repack_blueprint_bundle",
|
|
93
117
|
"replay_document_blueprint",
|
|
94
118
|
"validate_agent_batch",
|
|
95
119
|
"validate_agent_command",
|
|
120
|
+
"validate_mixed_form_plan",
|
|
121
|
+
"validate_mixed_form_request",
|
|
96
122
|
"validate_blueprint_manifest",
|
|
97
123
|
"validate_replay_request",
|
|
98
124
|
"write_blueprint_bundle",
|
|
@@ -9,10 +9,16 @@ from copy import deepcopy
|
|
|
9
9
|
from typing import Any
|
|
10
10
|
|
|
11
11
|
from .model import (
|
|
12
|
+
AGENT_BATCH_SCHEMA,
|
|
12
13
|
AGENT_CATALOG_SCHEMA,
|
|
14
|
+
MAX_COMMANDS,
|
|
13
15
|
AgentContractError,
|
|
14
16
|
NODE_KINDS,
|
|
15
17
|
NODE_PROPERTY_CATALOG_V1,
|
|
18
|
+
QUALITY_KEYS,
|
|
19
|
+
QUALITY_MODES,
|
|
20
|
+
REVISION_PATTERN,
|
|
21
|
+
VERIFICATION_REQUIREMENTS,
|
|
16
22
|
agent_contract_manifest,
|
|
17
23
|
)
|
|
18
24
|
|
|
@@ -78,6 +84,22 @@ def agent_json_schemas() -> dict[str, Any]:
|
|
|
78
84
|
"properties": {key: value for key, value in properties.items() if key in allowed},
|
|
79
85
|
}
|
|
80
86
|
)
|
|
87
|
+
quality_object = {
|
|
88
|
+
"type": "object",
|
|
89
|
+
"additionalProperties": False,
|
|
90
|
+
"properties": {
|
|
91
|
+
"mode": {"enum": list(QUALITY_MODES)},
|
|
92
|
+
"renderCheck": {"enum": ["off", "auto", "required"]},
|
|
93
|
+
"xsdMode": {"enum": ["off", "lint"]},
|
|
94
|
+
"overflowPolicy": {"enum": ["fail", "warn", "truncate"]},
|
|
95
|
+
"layoutLint": {"enum": ["off", "warn", "strict"]},
|
|
96
|
+
"preserveUnmodifiedParts": {"type": "boolean"},
|
|
97
|
+
"requireReferenceIntegrity": {"type": "boolean"},
|
|
98
|
+
},
|
|
99
|
+
}
|
|
100
|
+
if set(quality_object["properties"]) != set(QUALITY_KEYS): # pragma: no cover
|
|
101
|
+
raise AssertionError("quality JSON Schema drifted from QUALITY_KEYS")
|
|
102
|
+
|
|
81
103
|
return {
|
|
82
104
|
"node": {
|
|
83
105
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -113,6 +135,69 @@ def agent_json_schemas() -> dict[str, Any]:
|
|
|
113
135
|
"title": "HwpxAgentCommand v1",
|
|
114
136
|
"oneOf": command_variants,
|
|
115
137
|
},
|
|
138
|
+
"batch": {
|
|
139
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
140
|
+
"title": "HwpxAgentBatch v1",
|
|
141
|
+
"type": "object",
|
|
142
|
+
"required": [
|
|
143
|
+
"schemaVersion",
|
|
144
|
+
"input",
|
|
145
|
+
"output",
|
|
146
|
+
"commands",
|
|
147
|
+
"expectedRevision",
|
|
148
|
+
"idempotencyKey",
|
|
149
|
+
"dryRun",
|
|
150
|
+
"quality",
|
|
151
|
+
"verificationRequirements",
|
|
152
|
+
],
|
|
153
|
+
"additionalProperties": False,
|
|
154
|
+
"properties": {
|
|
155
|
+
"schemaVersion": {"const": AGENT_BATCH_SCHEMA},
|
|
156
|
+
"input": {
|
|
157
|
+
"type": "object",
|
|
158
|
+
"required": ["filename"],
|
|
159
|
+
"additionalProperties": False,
|
|
160
|
+
"properties": {"filename": {"type": "string", "minLength": 1}},
|
|
161
|
+
},
|
|
162
|
+
"output": {
|
|
163
|
+
"type": "object",
|
|
164
|
+
"required": ["filename", "overwrite"],
|
|
165
|
+
"additionalProperties": False,
|
|
166
|
+
"properties": {
|
|
167
|
+
"filename": {"type": "string", "minLength": 1},
|
|
168
|
+
"overwrite": {"type": "boolean"},
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
"commands": {
|
|
172
|
+
"type": "array",
|
|
173
|
+
"minItems": 1,
|
|
174
|
+
"maxItems": MAX_COMMANDS,
|
|
175
|
+
"items": {"oneOf": deepcopy(command_variants)},
|
|
176
|
+
},
|
|
177
|
+
"expectedRevision": {
|
|
178
|
+
"type": ["string", "null"],
|
|
179
|
+
"pattern": REVISION_PATTERN.pattern,
|
|
180
|
+
},
|
|
181
|
+
"idempotencyKey": {
|
|
182
|
+
"type": ["string", "null"],
|
|
183
|
+
"minLength": 1,
|
|
184
|
+
"maxLength": 128,
|
|
185
|
+
},
|
|
186
|
+
"dryRun": {"type": "boolean"},
|
|
187
|
+
"quality": {
|
|
188
|
+
"oneOf": [
|
|
189
|
+
{"enum": list(QUALITY_MODES)},
|
|
190
|
+
deepcopy(quality_object),
|
|
191
|
+
{"type": "null"},
|
|
192
|
+
]
|
|
193
|
+
},
|
|
194
|
+
"verificationRequirements": {
|
|
195
|
+
"type": "array",
|
|
196
|
+
"items": {"enum": list(VERIFICATION_REQUIREMENTS)},
|
|
197
|
+
"uniqueItems": True,
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
},
|
|
116
201
|
"queryInput": {
|
|
117
202
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
118
203
|
"type": "object",
|