使用Python从Google表格中提取插入的图片

时间:2019-03-11 13:37:19

标签: python google-sheets-api gspread imagedownload

我需要从Google表格电子表格中提取图像。它没有连接到单元,也没有URL,它只是插入的图像:

如何使用Python提取它?

非常感谢您的回答。

这是代码的一部分:

import gspread 
from oauth2client.service_account import ServiceAccountCredentials 
import urllib 
import numpy as numpy 
scopes = ['spreadsheets.google.com/feeds'] 
creds = ServiceAccountCredentials.from_json_keyfile_name('client_secret.json',scopes) 
client = gspread.authorize(creds) 
spreadsheet = client.open_by_url("docs.google.com/spreadsheets/d/…) 
worksheet = spreadsheet.worksheet("Ark1") 
list_of_lists = worksheet.range('A1:Q31') 
print('{}\n'.format(list_of_lists))

0 个答案:

没有答案