port address level computation to Python

Also adds simple tests for correct table creation.
This commit is contained in:
Sarah Hoffmann
2021-01-23 17:25:14 +01:00
parent e6c2842b66
commit 94fa7162be
13 changed files with 268 additions and 171 deletions

View File

@@ -9,3 +9,4 @@ def execute_file(conn, fname):
sql = fdesc.read()
with conn.cursor() as cur:
cur.execute(sql)
conn.commit()