mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
7 lines
No EOL
197 B
Python
7 lines
No EOL
197 B
Python
# A very simple script to load metadata to whatever db we connected to
|
|
from etl.db.db import get_db_session, init_db
|
|
|
|
init_db()
|
|
|
|
with get_db_session() as session:
|
|
print("Metadata loaded to db") |