- 您想将 Sheets API 的“textRotation”与 pyghseets 一起使用。
如果我的理解是正确的,这个答案怎么样?在我的环境中,我也可以确认与您发生了同样的问题。所以当我看到“pygsheets”的脚本时,我注意到了脚本的修改点。
虽然textRotation
设置了参数,但不幸的textRotation
是,请求正文中不包含。这样,textRotation
行不通。
修改后的脚本:
使用此修改时,请get_json()
在cell.py
已安装的“pygsheets”目录中修改如下。我认为可能会有更简单的修改。因此,请将此视为几个答案之一。
def get_json(self):
"""Returns the cell as a dictionary structured like the Google Sheets API v4."""
try:
nformat, pattern = self.format
except TypeError:
nformat, pattern = self.format, ""
if self._formula != '':
value = self._formula
value_key = 'formulaValue'
elif is_number(self._value):
value = self._value
value_key = 'numberValue'
elif type(self._value) is bool:
value = self._value
value_key = 'boolValue'
elif type(self._value) is str or type(self._value) is unicode:
value = self._value
value_key = 'stringValue'
else: # @TODO errorValue key not handled
value = self._value
value_key = 'errorValue'
ret_json = dict()
ret_json["userEnteredFormat"] = dict()
if self.format[0] is not None:
ret_json["userEnteredFormat"]["numberFormat"] = {"type": getattr(nformat, 'value', nformat),
"pattern": pattern}
if self._color[0] is not None:
ret_json["userEnteredFormat"]["backgroundColor"] = {"red": self._color[0], "green": self._color[1],
"blue": self._color[2], "alpha": self._color[3]}
if self.text_format is not None:
ret_json["userEnteredFormat"]["textFormat"] = self.text_format
fg = ret_json["userEnteredFormat"]["textFormat"].get('foregroundColor', None)
if fg:
ret_json["userEnteredFormat"]["textFormat"]['foregroundColor'] = {"red": fg[0], "green": fg[1],
"blue": fg[2], "alpha": fg[3]}
if self.borders is not None:
ret_json["userEnteredFormat"]["borders"] = self.borders
if self._horizontal_alignment is not None:
ret_json["userEnteredFormat"]["horizontalAlignment"] = self._horizontal_alignment.value
if self._vertical_alignment is not None:
ret_json["userEnteredFormat"]["verticalAlignment"] = self._vertical_alignment.value
if self._wrap_strategy is not None:
ret_json["userEnteredFormat"]["wrapStrategy"] = self._wrap_strategy
### Added -- begin
if self.text_rotation is not None:
ret_json["userEnteredFormat"]["textRotation"] = self.text_rotation
### Added -- end
if self._note is not None:
ret_json["note"] = self._note
ret_json["userEnteredValue"] = {value_key: value}
return ret_json
结果:
反映上述修改时,您的脚本将获得以下结果。
笔记:
- 这个修改后的脚本假设 Sheets API 已经可以使用。
- 在将 pygsheets 更新为“pygsheets-2.0.1”后,我调查了上述修改。
参考:
在我的环境中,我可以通过上述修改确认通过“textRotation”工作。但是,如果这在您的环境中不起作用,我深表歉意。