Python Google Sheets API: Update Cell Data

Jul 2, 2019
credentials = ...service = build('sheets', 'v4', credentials=credentials)sheet = service.spreadsheets()SPREADSHEET_ID = ...SHEET_NAME = ...range_notation = "'{SHEET_NAME}'!B1"value = 'Hello'body = {    'value_input_option': 'USER_ENTERED', # RAW    'data': [        {'range': range_notation, 'values': [[value]]}    ]}result = sheet.values().batchUpdate(spreadsheetId=SPREADSHEET_ID,                                    body=body).execute()

NOTE: Refer Setup and Access Google Sheets API With Python.

NOTE: Refer Android (Java/Kotlin) Google Sheets API: Update Cell Value

References:

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.