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
236 B
Python

from common import run
# See https://github.com/PyMySQL/PyMySQL for more details
URL = '' # e.g. mysql+pymysql://username:password@hostname:port
OPTIONS = {} # e.g. {"encoding": "latin1"}
PLATFORM = 'mysql'
run(URL, OPTIONS, PLATFORM)