capture.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Capture JSON emitted by CLI commands for HTTP handlers.""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from typing import Any |
| 6 | |
| 7 | from cli.output import OutputContext |
| 8 | |
| 9 | |
| 10 | class CapturingOutputContext(OutputContext): |
| 11 | """Output context that records the last JSON payload instead of printing it.""" |
| 12 | |
| 13 | def __init__(self) -> None: |
| 14 | super().__init__(json_mode=True, quiet=True) |
| 15 | self.json_payload: dict[str, Any] | None = None |
| 16 | |
| 17 | def emit_json(self, payload: dict[str, Any]) -> None: |
| 18 | self.json_payload = payload |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago