- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种从 Python 中的 Google 工作表中读取单元格格式的方法,特别是其背景颜色。
我发现能够读取表格的两个流行软件包是 gspread (fork)和 pygsheets 。我尝试了两者,它们在读取我的工作表数据方面效果很好,但是从我看来,两者都不支持读取单元格格式,只支持设置它们。这个open issue pygsheets 的 GitHub 页面上描述了我需要的功能类型。
本质上,每行都是一个包含时间戳、用户名、注释等的记录,我想查找特定用户名的所有行和仅查找那些没有红色背景的行,有点像这样:
if ("Username" in record.values()) and (matching_cells.background != red):
# Do something
谢谢!
最佳答案
使用 google-api-python-client
获取授权的 sheets
API 客户端,您可以使用 service.spreadsheets().get
请求电子表格数据。方法:
def get_sheet_colors(service, wbId: str, ranges: list):
params = {'spreadsheetId': wbId,
'ranges': ranges,
'fields': 'sheets(data(rowData(values(effectiveFormat/backgroundColor,formattedValue)),startColumn,startRow),properties(sheetId,title))'}
return service.spreadsheets().get(**params).execute()
desiredA1NotationRanges = ['\'Some Arbitrary Sheet 1\'!A1:K', '\'Some Other Arbitary Sheet\'!B2:D4']
all_data = get_sheet_colors(get_authed_service_somehow(), mySpreadsheetId, desiredA1NotationRanges))
# all_data is a dict with keys determined by the fields in the request
# (i.e. "sheets") and the output of the API method used (aka consult your API reference)
下面的代码使用上面的 API 响应并创建两个数组,一个具有背景颜色,一个具有单元格值,并通过为行和列添加前缀来确保行和列索引可移植,以确保数据从单元格 A1 开始,即使您请求的范围如“C3:J5”。这是作为将 REST 资源转换为更熟悉的类型的示例而提供的,并不具有一般意义。
dataset = []
default_bg = {'red': 1, 'green': 1, 'blue': 1}
# all_data['sheets'] is a list of sheet resources (per the API spec.)
for sheet in all_data['sheets']:
# The sheet resource is a dict with keys determined by what we requested in fields
# (i.e. properties (->sheetId, ->title), data)
print('Sheet name is {title} with grid id {sheetId}'.format_map(sheet["properties"]))
# each range in data will only contain startRow and/or startColumn if they are not 0
# (i.e. if you grab A1:___, you won't have startRow or startColumn)
for range in sheet['data']:
rowData = range.get('rowData', [])
if not rowData:
continue
offsets = {'row': range.get('startRow', 0),
'col': range.get('startColumn', 0)}
rangeBGs = [default_bg] * offsets['row']
rangeValues = [''] * offsets['row']
for row in rowData:
colData = row['values']
newBGs = [default_bg] * offsets['col']
newVals = [''] * offsets['col']
for col in colData:
try:
newBGs.append(col['effectiveFormat']['backgroundColor'])
except KeyError:
newBGs.append(default_bg) # Shouldn't get called (all cells have a background)
try:
newVals.append(col['formattedValue']) # Always a string if present.
except KeyError:
newVals.append('') # Not all cells have a value.
rangeBGs.append(newBGs)
rangeValues.append(newVals)
dataset.append({'sheetId': sheet['properties']['sheetId'],
'sheetName': sheet['properties']['title'],
'backgrounds': rangeBGs,
'values': rangeValues})
# dataset is now a list with elements that correspond to the requested ranges,
# and contain 0-base row and column indexed arrays of the backgrounds and values.
# One could add logic to pop elements from the ranges if the entire row has no values.
# Color in A1 of 1st range:
r1 = dataset[0]
print(f'Cell A1 color is {r1["backgrounds"][0][0]} and has value {r1["values"][0][0]}')
print(f'Cell D2 color is {r1["backgrounds"][3][1]} and has value {r1["values"][3][1]}')
引用文献:
spreadsheet
JSON resource 关于python - 使用 Python (API v4) 从 Google 工作表读取单元格格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51302487/
我最近一直在学习 Clojure。 Clojure 世界中是否有类似 Scala 的工作表这样的东西,我可以在其中放入任何代码并在保存后立即对其进行评估?或者也许 Clojure 有类似的解决方案?
有人可以帮我吗?我想知道如何过滤工作表中的多个选项卡(C1-C19)。这是我所做的: 我创建了一张表格,将所有回复存储在我的谷歌表单(事件注册表单)中。每个参与者将收到一个坦克编号,每个坦克编号根据其
这就是我将打开的面板显示为 float 窗口的方式。 有人可以帮我将面板作为工作表运行吗?窗口对象是mWindow。我使用的许多标准代码都已被折旧。 NSOpenPanel *openPanel =
当您仅键入 worksheets() 时,默认范围 ActiveWorkbook 或 ThisWorkbook 是什么?对于那些不了解这些区别的人来说,它们非常重要,尤其是在 Excel 2013 中
我有一个带有一些图表的 HTML 页面。我想要做的是编写一个加载 javascript 函数,它将从 excel 表中读取值,将它们存储在变量中并在 html 页面上使用它们。我的问题是是否有任何 j
我需要将参数 callFrom 传递给 SwiftUI 中的工作表。 奇怪的是,该参数在第一次调用时没有使用,但对以下调用有效。 import SwiftUI struct ContentView:
我试着 var tempSheet = wrksheets[sheetName] as Worksheet; 在哪里 wrksheets是类型表 sheetName 是“带空格的工作表名称” 如果
该函数用作“ Assets 类别分配”引擎(在参数范围内具有约束)并在数组的每一行上模拟投资组合模型。我尝试使用四种方法将数组发布到工作表上,但每种方法都失败了。 对于 Assets A、B、C、D
目前,我的 excel 文件有两张表,一张名为“English”,一张名为“French”。 我以编程方式打开我的工作簿并编辑我的英文表,没有任何问题。当我打开第二张工作表时,出现以下错误: The
我添加了一个 VBA 表单 userform和一个模块 Module1在 Excel 中打开 Microsoft VBA 编辑器 (Alt+F11)。 现在,每当我打开任何其他 Excel 时,按 A
在单个 Excel 工作簿中,我想选择各种工作表来运行 VBA 子例程。我找到了显示如何遍历选定工作表的代码,它使用“MsgBox sh.Name”;但是,当我将代码放入其中时,它只会影响选择的最后一
我想知道是否有一个函数可以在 Excel 中加载特定于 Python 的工作表,例如,如果我有 34 张工作表只加载前 25 张工作表。通过以下行,我加载了所有工作表。 xlsx=pd.ExcelFi
我有一个名为“A”、“B”、“C”等的工作表的 xlsx。我需要形成一个名称为“A”、“B”、“C”的表作为第一列,以及来自的一些数据每个工作表中与第二列相同的单元格。例如,这可能看起来像: S
我有一张用密码保护的工作表。当我使用 VBA 更改该表上的任何内容时,我会像这样取消保护: Private Sub Worksheet_Change(ByVal target As Range)
我想将 Excel 文档插入 Excel 工作表。我可以通过以下步骤手动执行此操作; 插入/文本/对象/从文件创建(勾选显示为图标)/浏览。 然后我选择文件并插入文档。 我想通过宏来做到这一点。 (录
是否可以创建 批处理文件那将执行以下操作? 重命名 Excel 文件中的单个工作表(不是 Excel 工作簿/文件本身) 将简单格式应用于 Excel 文件 - 例如,将字体和字体大小应用于整个工作簿
Private Sub CommandButton1_Click() Dim ws As Worksheet With Application.FileDialog(msoFileDialog
我想知道是否可以在不复制该工作表的情况下引用另一本工作簿中的 Excel 工作表? 情况:我有一些非常大的工作表,其中充满了各种数据,但我不想在我的工作簿中保留它们的副本,因为虽然每个工作簿都使用相同
我有这个 Python 字典,我想将这个数据写入 Excel 文件。 注意:有很多类别,每个类别有很多汽车(为简单起见,我使用了 2 个类别) data = {"Category": {"Diesel
我有一个 excel 工作簿,在工作簿中我有 2 张名为 Front Page 和 Drafting 的工作表。起草工作表引用了首页工作表中的一些值。这只是一个基本的引用 我有像这样的公式:='Fro
我是一名优秀的程序员,十分优秀!