This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Useful when you want to make a full copy of a Snowflake Database that is shared with your account | |
# into a database in your account, but you can't use clone database / etc. | |
#!/usr/bin/env python | |
import os | |
import re | |
# https://docs.snowflake.com/en/user-guide/python-connector.html | |
import snowflake.connector | |
# Connect to snowflake |