Pull source data from BigQuery
from vinyl.lib.connect import BigQueryConnector from vinyl import resource @resource def bigquery(): return BigQueryConnector( service_account_info=os.getenv("GOOGLE_APPLICATION_CREDENTIALS"), tables=["*"], )
Was this page helpful?