使用Python从公共Google Sheets获取数据的方法如下:
gspread
和oauth2client
库。可以使用以下命令进行安装:pip install gspread oauth2client
import gspread
from oauth2client.service_account import ServiceAccountCredentials
# 设置Google Sheets API凭据
scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('path/to/credentials.json', scope)
# 授权并打开Google Sheets文件
client = gspread.authorize(credentials)
sheet = client.open('Google Sheets文件名称').sheet1
# 获取数据
data = sheet.get_all_records()
确保将path/to/credentials.json
替换为您下载的凭据文件的实际路径,并将Google Sheets文件名称
替换为要访问的Google Sheets文件的名称。
请注意,这只是使用Python从公共Google Sheets获取数据的一种方法。还有其他方法,例如使用Google Sheets API的其他功能和选项。
领取专属 10元无门槛券
手把手带您无忧上云