feat: Python porting workspace with reference data and parity audit

This commit is contained in:
Sisyphus
2026-04-01 20:36:06 +09:00
parent ca5fb61d42
commit 44d75cccdb
99 changed files with 4890 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
"""Python package placeholder for the archived `upstreamproxy` subsystem."""
from __future__ import annotations
import json
from pathlib import Path
SNAPSHOT_PATH = Path(__file__).resolve().parent.parent / 'reference_data' / 'subsystems' / 'upstreamproxy.json'
_SNAPSHOT = json.loads(SNAPSHOT_PATH.read_text())
ARCHIVE_NAME = _SNAPSHOT['archive_name']
MODULE_COUNT = _SNAPSHOT['module_count']
SAMPLE_FILES = tuple(_SNAPSHOT['sample_files'])
PORTING_NOTE = f"Python placeholder package for '{ARCHIVE_NAME}' with {MODULE_COUNT} archived module references."
__all__ = ['ARCHIVE_NAME', 'MODULE_COUNT', 'PORTING_NOTE', 'SAMPLE_FILES']