Source: factory.export/ObjDataExportNdjson.py
Exports data as Newline-Delimited JSON (NDJSON / JSON Lines).
Each row is written as a self-contained JSON object on its own line,
making the output suitable for streaming pipelines and log aggregators
that process files line by line.
| Method | Signature | Description |
|---|---|---|
| OpenFile | OpenFile(filename: str) -> None |
|
| CloseFile | CloseFile() -> None |
|
| WriteHeader | WriteHeader(header_fields: list) -> None |
|
| WriteData | WriteData(data: list) -> None |
|
| EscapeCSV | EscapeCSV(val: str) -> str |
|
| DefaultExtension | DefaultExtension() -> str |