Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过gspread或其他基于 Python 的访问 Google 电子表格将图像插入电子表格?
gspread
此外,是否可以制作富文本单元格(例如,粗体、斜体、不同的字体大小、颜色等)?
这个问题有点老了,但今天我必须自己检查一下,所以这可能对到达这里的人有用。
插入图像:我不确定是否可以将图像作为对象插入(如在 Google 表格 UI 中),但一种方法是将单元格的内容设置为=IMAGE("<url of image>"). 我认为这里的图片需要是公共链接,因此无法直接链接到受保护的 Google Drive 资源(即使用户有权访问它)。
=IMAGE("<url of image>")
格式化单元格:现在有包 gspread-formatting 可以做到这一点,但也可以调用 v4 的电子表格 API 来完成。