niku is gonna work on this

This commit is contained in:
2021-10-30 17:19:31 +02:00
commit 425d3a3a92
17 changed files with 1774 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import sqlalchemy as sa
from .autojoin import table as autojoin
from typing import Dict
def get_tables(metadata: sa.MetaData) -> Dict[str, sa.Table]:
return {name: table for name, table in [autojoin(metadata)]}