Google Sheets to Google Cloud Storage Transfer Operators

Google has a service Google Cloud Storage. This service is used to store large data from various applications.

With Google Sheets, everyone can work together in the same spreadsheet at the same time. Use formulas functions, and formatting options to save time and simplify common spreadsheet tasks.

Prerequisite Tasks

To use these operators, you must do a few things:

Upload data from Google Sheets to GCS

To upload data from Google Spreadsheet to Google Cloud Storage you can use the GoogleSheetsToGCSOperator.

tests/system/providers/google/cloud/gcs/example_sheets_to_gcs.py[source]

upload_sheet_to_gcs = GoogleSheetsToGCSOperator(
    task_id="upload_sheet_to_gcs",
    destination_bucket=BUCKET_NAME,
    spreadsheet_id="{{ task_instance.xcom_pull(task_ids='create_spreadsheet', "
    "key='spreadsheet_id') }}",
    gcp_conn_id=CONNECTION_ID,
)

You can use Jinja templating with spreadsheet_id, destination_bucket, destination_path, sheet_filter, impersonation_chain.

Was this entry helpful?