exstruct 0.2.62__tar.gz → 0.2.70__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: exstruct
3
- Version: 0.2.62
3
+ Version: 0.2.70
4
4
  Summary: Excel to structured JSON (tables, shapes, charts) for LLM/RAG pipelines
5
5
  Keywords: excel,structure,data,exstruct
6
6
  Author: harumiWeb
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "exstruct"
3
- version = "0.2.62"
3
+ version = "0.2.70"
4
4
  description = "Excel to structured JSON (tables, shapes, charts) for LLM/RAG pipelines"
5
5
  readme = "README.md"
6
6
  license = { file = "LICENSE" }
@@ -515,7 +515,12 @@ class ExStructEngine:
515
515
 
516
516
  if normalized_output_path is not None:
517
517
  normalized_output_path.write_text(text, encoding="utf-8")
518
- else:
518
+ elif (
519
+ normalized_output_path is None
520
+ and chosen_sheets_dir is None
521
+ and chosen_print_areas_dir is None
522
+ and chosen_auto_page_breaks_dir is None
523
+ ):
519
524
  import sys
520
525
 
521
526
  stream_target = target_stream or sys.stdout
File without changes
File without changes