currently using this for three tables, but probably it should be a better way when we have like 100 of tables
import daft
scada = daft.read_iceberg(catalog.load_table('aemo.scada'))
calendar = daft.read_iceberg(catalog.load_table('aemo.calendar'))
duid = daft.read_iceberg(catalog.load_table('aemo.duid'))
something like
for x in catalog.list_tables("db"):
daft.read_iceberg(catalog.load_table(x)).to_df(x)
currently using this for three tables, but probably it should be a better way when we have like 100 of tables
something like