James Rosenthal
02/07/2023, 11:19 PMfrom dagster_snowflake.utils import get_conn_string as get_conn_string_sf
I got the error:
ModuleNotFoundError: No module named 'dagster_snowflake.utils'
After reading through the dagster-snowflake documentation (https://docs.dagster.io/_modules/dagster_snowflake/resources) , it looked like I needed dagster_snowflake.resources instead.
When I tried:
from dagster_snowflake.resources import get_connection as get_conn_string_sf
I got the error:
ImportError: cannot import name 'get_connection' from 'dagster_snowflake.resources' (/opt/homebrew/lib/python3.10/site-packages/dagster_snowflake/resources.py)
Is there something that I should be doing differently? Is there a good template for creating an Airbyte Snowflake destination? Thanks!