mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-26 20:14:47 +00:00
fix: make CLI JSON export more human-readable
Signed-off-by: Panos Vagenas <35837085+vagenas@users.noreply.github.com>
This commit is contained in:
parent
dda2645d4c
commit
70865b4c7d
@ -87,12 +87,12 @@ def export_documents(
|
|||||||
success_count += 1
|
success_count += 1
|
||||||
doc_filename = conv_res.input.file.stem
|
doc_filename = conv_res.input.file.stem
|
||||||
|
|
||||||
# Export Deep Search document JSON format:
|
# Export JSON format:
|
||||||
if export_json:
|
if export_json:
|
||||||
fname = output_dir / f"{doc_filename}.json"
|
fname = output_dir / f"{doc_filename}.json"
|
||||||
with fname.open("w") as fp:
|
with fname.open("w") as fp:
|
||||||
_log.info(f"writing JSON output to {fname}")
|
_log.info(f"writing JSON output to {fname}")
|
||||||
fp.write(json.dumps(conv_res.document.export_to_dict()))
|
fp.write(json.dumps(conv_res.document.export_to_dict(), indent=4))
|
||||||
|
|
||||||
# Export Text format:
|
# Export Text format:
|
||||||
if export_txt:
|
if export_txt:
|
||||||
|
Loading…
Reference in New Issue
Block a user