Mars Lan 221c9af220
feature(ingest): add bigquery ETL script (#1711)
Also fix minor issues in the common script
2020-06-25 15:28:13 -07:00

8 lines
240 B
Python

from common import run
# See https://github.com/mxmzdlv/pybigquery/ for more details
URL = '' # e.g. bigquery://project_id
OPTIONS = {} # e.g. {"credentials_path": "/path/to/keyfile.json"}
PLATFORM = 'bigquery'
run(URL, OPTIONS, PLATFORM)