gpt4 book ai didi

python - 使用 python3 访问 Google 表格上的电子表格

转载 作者:太空宇宙 更新时间:2023-11-04 00:39:27 25 4
gpt4 key购买 nike


我正在尝试使用用于电子表格的 google api (v4) 从个人电子表格中读取。
我在更改电子表格 ID、范围名称和范围时从 google 提供的示例中复制了代码。
无论我做什么(公开电子表格等),我都会收到 HttpError: 404 Requested entity was not found。

我的代码:

import httplib2
import os

from apiclient import discovery
from oauth2client import client
from oauth2client import tools
from oauth2client.file import Storage

SCOPES = ['https://www.googleapis.com/auth/spreadsheets.readonly',
'https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.readonly']
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'python'

def get_credentials():
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir,
'sheets.googleapis.com-python.json')

store = Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
credentials = tools.run_flow(flow, store, None)
return credentials

def main():
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
discoveryUrl = ('https://sheets.googleapis.com/$discovery/rest?'
'version=v4')
service = discovery.build('sheets', 'v4', http = http,
discoveryServiceUrl = discoveryUrl)
spreadsheetId = 'ID'
rangeName = 'RANGE'
result = service.spreadsheets().values().get(
spreadsheetId = spreadsheetId, range = rangeName).execute()

最佳答案

您尚未设置文件/电子表格 ID 或有效的单元格范围。您还有很多额外的代码,可能包括比您需要的更多的范围。这是您可以借用的更短的一个,它只转储工作表的内容,只需要 RO 范围:

from pprint import pprint

from apiclient import discovery
from httplib2 import Http
from oauth2client import file, client, tools

SCOPES = 'https://www.googleapis.com/auth/spreadsheets.readonly'
store = file.Storage('storage.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('client_secret.json', SCOPES)
creds = tools.run_flow(flow, store)
SHEETS = discovery.build('sheets', 'v4', http=creds.authorize(Http()))

SHEET_ID = 'YOUR_SHEET_DRIVE_FILE_ID'
rows = SHEETS.spreadsheets().values().get(spreadsheetId=SHEET_ID,
range='Sheet1', fields='values').execute().get('values', [])
pprint(rows)

在你运行它之前(它将在 Python 2 和 3 上运行而无需修改),确保你已经......

如果您仍然遇到任何类型的错误,请将其作为更新发布到上面的 OP。 FWIW,我制作了几个视频来展示 Sheets API 的其他用途以防其他代码示例有帮助。

(所有较新的视频都将成为 this video series 的一部分,它侧重于各种 G Suite API。)

关于python - 使用 python3 访问 Google 表格上的电子表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42488124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com