私はpythonが初めてです。gspread を使用して Google ワークシートを作成しようとしていました。hereからGoogle APIの使用について読みました。json 形式のファイルであるGoogle Developers Consoleから認証情報をダウンロードしました。次に、このコードを使用しました
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'
しかし、この属性を含むドキュメントを読んでもエラーがスローされます。これが私がたどったリンクです。この問題を解決するのを手伝ってください。