私はPythonの初心者です。私はgspreadを使ってGoogleワークシートを作成しようとしていました。 hereからgoogle apiを使用しています。 json形式のファイルであるGoogle Developers Consoleから資格情報をダウンロードしました。それから私は、このコードgspreadを使用してワークシートを作成
import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = ['https://spreadsheets.google.com/feeds']
credentials = ServiceAccountCredentials.from_json_keyfile_name('spreadsheet1995.json', scope)
gc = gspread.authorize(credentials)
worksheet = gc.add_worksheet(title="A worksheet", rows="100", cols="20")
を使用しかし、私は、この属性を含むドキュメントを読むが、それは誤り'Client' object has no attribute 'add_worksheet'
をスローします。ここには私が従ったlinkがあります。この問題を解決するのを手伝ってください。