Spaces:
Sleeping
Sleeping
File size: 167 Bytes
e84abc1 |
1 2 3 4 5 6 7 8 9 |
import duckdb
import os
DUCKDB_PATH = os.path.join(os.path.dirname(__file__), "dbt_yfdash", "dev.duckdb")
def get_db_conn():
return duckdb.connect(DUCKDB_PATH)
|