Google API:AttributeError:模块“时间”没有属性“时钟”

问题描述

这是我的代码

[[1,2],[4,5,6],[7,8,9,10,11,12]]

我在 from oauth2client.service_account import ServiceAccountCredentials from apiclient import discovery from httplib2 import Http key_path = os.environ["GOOGLE_APPLICATION_CREDENTIALS"] # define scope ScopE = ['https://spreadsheets.google.com/Feeds','https://www.googleapis.com/auth/drive'] # define store credentials = ServiceAccountCredentials.from_json_keyfile_name(key_path,ScopE) # define API service http = credentials.authorize(Http()) drive = discovery.build('drive','v3',http=http) # ERROR HERE 处遇到错误显示错误消息:

属性错误:模块“时间”没有属性“时钟”

我使用的是 Python 3.8。请帮忙。如果需要,我可以上传错误消息。

错误日志:

drive

解决方法

请检查这个答案AttributeError: module 'time' has no attribute 'clock' in Python 3.8

我认为最简单的解决方案是将您的 python 降级到 python 3.7。