You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
motief/read.py

9 lines
153 B

import ibis
con = ibis.duckdb.connect('data/motions.db')
print(con.tables)
for t in con.tables:
print(con.table(t).head().execute().to_string())