mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-27 01:55:17 +00:00
8 lines
296 B
Python
8 lines
296 B
Python
![]() |
from common import run
|
||
|
|
||
|
# See https://github.com/snowflakedb/snowflake-sqlalchemy for more details
|
||
|
URL = '' # e.g. snowflake://<user_login_name>:<password>@<account_name>
|
||
|
OPTIONS = {} # e.g. {"connect_args": {"timezone": "America/Los_Angeles"}}
|
||
|
PLATFORM = 'snowflake'
|
||
|
|
||
|
run(URL, OPTIONS, PLATFORM)
|