Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CCLW master sheet reference #59

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions scripts/validate_cclw_sheet/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Requires:
1) A Service Account to be configured
2) The sheet in question has been "Shared" with this account's email
3) GOOGLE_SERVICE_ACCOUNT is set in the current environment, with the
3) GOOGLE_SERVICE_ACCOUNT is set in the current environment, with the
contents of the json service account details (downloaded when created)
"""
from __future__ import print_function
Expand All @@ -23,8 +23,9 @@
SCOPES = ["https://www.googleapis.com/auth/spreadsheets.readonly"]

# The ID and range of a sample spreadsheet.
SPREADSHEET_ID = "1l0pu47JzAo_tchuRqaJh8moZM13OvEDv9DhUdydnuhQ"
RANGE_NAME = "All new docs as of 030323 - NEW FORMAT!A:Z"
SPREADSHEET_ID = "1bfUsg0fPAYduc4e89UjYvbI0wDUV1xa58NzAFcTofoo"
# RANGE_NAME = "All new docs as of 030323 - NEW FORMAT!A:Z"
RANGE_NAME = "CPR_MASTER_1.0.0!A:Z"


def double_quote_quotes(col: str) -> str:
Expand Down