from sf_utils import SF_CONFIG from snowflake_executor import SnowflakeSQLExecutorGDA def populate_table(): with SnowflakeSQLExecutorGDA(SF_CONFIG) as executor: executor.populate_table() if __name__ == '__main__': populate_table()