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.
|
import duckdb
|
|
from config import config
|
|
|
|
conn = duckdb.connect(config.DATABASE_PATH)
|
|
result = conn.execute("PRAGMA table_info('motions')").fetchall()
|
|
for row in result:
|
|
print(row)
|
|
conn.close()
|
|
|
|
|