我正在使用http://pygsheets.readthedocs.io/en/latest/index.html使用google sheet api v4的包装器。我有兴趣使用google-sheets-api v4设置条件格式。我尝试使用自定义公式根据" Q"的值来突出显示一行。行中的列。如果q列包含' TRASH',我想将行涂成黄色。
我查看https://github.com/nithinmurali/pygsheets/blob/master/pygsheets/client.py中的pygheets库和sh_batch_update方法
import pygsheets
def cfr1(sheetId):
# Apply to range: A1:R
# Format cells if...: Custom formula is
# (formula:) =$Q1="TRASH"
return {
"addConditionalFormatRule": {
"rule": {
"ranges": [
{
"sheetId": sheetId,
"startColumnIndex": 'A',
"endColumnIndex": 'R',
"startRowIndex": 1,
"endRowIndex": 8
}
],
"booleanRule": {
"condition": {
"type": "CUSTOM_FORMULA",
"values": [
{
"userEnteredValue": '=$Q1="TRASH"'
}
]
},
"format": {
"backgroundColor": {
"yellow": 1.0
# "green": 0.0,
# "blue": 0.0
}
}
}
},
"index": 0
}
}
我跑的时候:
gc.sh_batch_update(ssheet.id,cfr1(ws.id))
我得到了:
"Invalid JSON payload received. Unknown name "yellow" at 'requests[0].add_conditional_format_rule.rule.boolean_rule.format.background_color': Cannot find field.">
这适用于绿色,红色和蓝色的原色。如何格式化为黄色背景。