gpt4 book ai didi

python - 关闭 gspread 上的连接

转载 作者:行者123 更新时间:2023-12-04 14:00:14 26 4
gpt4 key购买 nike

我有一个 python 脚本,它使用 gspread 从 Google Spreedsheet 获取信息。

            scope = ['https://spreadsheets.google.com/feeds']
creds = ServiceAccountCredentials.from_json_keyfile_name('client_secret.json', scope)
client = gspread.authorize(creds)
sheet_programar = client.open("FILE").worksheet("SHEET")

# Extract and print all of the values
list_of_hashes = sheet_programar.get_all_records()

这是正在运行的脚本的一部分,但 gspread 部分仅在白天的几个时间段运行。

这一切都有效,但是如果我尝试在另一个脚本上使用相同的凭据来访问同一张工作表,我会收到一个错误,提示我没有权限。

我对这个问题的理解是第一个脚本没有关闭连接,因此我无法使用相同的凭据登录。

我找不到任何关于如何关闭它的信息?

最佳答案

添加这个:

client.session.close()

关于python - 关闭 gspread 上的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49791526/

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