使用公式字符写入 gsheets 的 pygsheets 数据将数据作为公式

pygsheets data written to gsheets with formulaic chars takes data as formulas

使用 pygsheets 将数据写入 gsheets 时 - 我的值之一包含一个 + 字符。例如+myvalue

然后导出数据时,我得到 #NAME? 输出,而不是背景值。, of course the formula bar contains the right value.

这并非完全出乎意料,但是 - 当使用工作表方法并手动导入包含这些值的 CSV 时 - #NAME? 错误不会显示,相反我可以在字段中看到 +myvalue。 (除非我编辑它。)

这是我的 "importing" csv 代码 - 当然它只是读取 csv 和加载值:

# Authorise with GSheets Service Account
gc = pygsheets.authorize(service_file=service_account_file)

# Open spreadsheet
sh = gc.open_by_key(spreadsheet_key)

# Open Worksheet
#wks = sh.add_worksheet(spreadsheet_hosts_worksheet) # Create Worksheet
wks = sh.worksheet_by_title(worksheet_name)

# Generate list "data" with Values from CSV
with open(inputFile, 'r') as f:
  #reader = csv.reader(f, skipinitialspace=True, delimiter=',', quotechar='"')
  reader = csv.reader(f, delimiter=',', quotechar='"')
  data = list(reader)

# Empty Worksheet
wks.clear()

# Append Values
wks.update_values(crange='A1', values=data)

# Freeze Top Row
wks.frozen_rows=1

我可以更改更新方法,以便它采用类似于文本的公式 - 与 GSheets 上的 CSV import 函数一样吗?

我的示例数据:

['host_name', 'alias', 'address', 'parents', 'use', 'display_name', 'hostgroups', 'contacts', '_ADDINFO', '_SNOWGROUP', '_RTTCRIT', '_RTTWARN', 'contact_groups', 'notes', 'notes_url', 'check_command', 'first_notification_delay', 'check_interval', 'max_check_attempts', 'retry_interval', 'config_filename']
['host', 'destiny islands', '1.1.1.1', 'host.mypalace.com,host.mapalace2.com', 'tmpl_network_device', 'Gingerbread lane', 'hgrp_grandad', '+myvalue', 'ACTION - Don't forget to smile', 'test', '70', '20', '', '', '', '', '', '', '', '', '/folder/filename']

使用 parse=False 怎么样?

当我看到the script时,默认是parse=True。在这种情况下,valueInputOption 使用 USER_ENTERED。当使用 parse=False 时,valueInputOption 使用 RAW。这样一来,+myvalue 就不会 #NAME?.

修改后的脚本:

wks.update_values(crange='A1', values=[['+myvalue']])  # ---> #NAME? is put in a cell "A1"

wks.update_values(crange='A2', values=[['+myvalue']], parse=False)  # ---> +myvalue is put in a cell "A2"

参考文献: