我有一个要运行的脚本,需要读取我的Google云端硬盘中的文件,还需要进行身份验证才能读取Google表格。是否有一些更新脚本的方法,这样我每次运行脚本时都不需要经过身份验证过程?
from google.colab import drive
drive.mount('/content/drive')
!ls "/content/drive/My Drive/service_account.json"
from google.colab import auth
auth.authenticate_user()
import gspread
from oauth2client.client import GoogleCredentials
gc = gspread.authorize(GoogleCredentials.get_application_default())
运行所有这些方法后,我必须通过“在浏览器中转到此URL:”弹出窗口进行身份验证。
任何帮助将不胜感激,谢谢!