adapter updates

This commit is contained in:
2026-09-16 09:13:47 -03:00
parent 74e246e67a
commit 7b70b7edc6
7 changed files with 97 additions and 29 deletions

View File

@@ -4,6 +4,7 @@ Output: one .sql file per table or sheet, named after it.
from pathlib import Path
from progress import say
from sqlgen import render_table, sanitize_identifier
@@ -43,4 +44,4 @@ def write_tables(dfs: dict, out_dir: Path, source_name: str, max_rows=None, repo
report.add(source_name, table, filename, df, total, full_bytes, exact, shown)
suffix = "" if exact else f" ({shown} of {total} rows)"
print(f"[dataconvert] Generated: {out_file}{suffix}")
say(f"Generated: {out_file}{suffix}")