Python 快速入门 Google Workspace 上的语法无效

问题描述 投票:0回答:1

目标:我正在尝试在 Google Workspace 中设置 Python,目的是在 Google Sheets 上创建自动化脚本。以下是 Google 的快速入门指南:https://developers.google.com/sheets/api/quickstart/python

我执行了除“为桌面应用程序授权凭据”部分之外的大部分步骤,因为我将首先使用它来广泛测试自动化。这说明使用这段代码已经成功安装了pip包管理工具 -

pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib

我希望在运行时看到有效的输出

python3 quickstart.py

工具: Mu Editor with Python version 3.8.12 (Edited from 3.12.1).

问题: 在 Google 快速入门指南的最后一步(运行示例)中,当我运行

python3 quickstart.py
时,出现无效语法错误。我不确定为什么
quickstart.py
没有被识别。

Jupyter QtConsole 4.7.7
Python 3.8.12 (default, Oct 18 2021, 00:42:52) 
Type 'copyright', 'credits' or 'license' for more information
IPython 8.6.0 -- An enhanced Interactive Python. Type '?' for help.

python3 quickstart.py
  Cell In [1], line 1
    python3 quickstart.py
            ^
SyntaxError: invalid syntax
python google-sheets google-api google-api-python-client
1个回答
0
投票

您好,对于该特定错误,您需要导入 Google-auth 库

尝试

pip install google-auth
© www.soinside.com 2019 - 2024. All rights reserved.