-6
import gspread
gc = gspread.login(‘[email protected]’,’password’)
はAttributeErrorのログイン 'は属性がありません。「モジュール」オブジェクトを私は知っているgsspread
はlogin
メソッドを持っていないはAttributeError:「モジュール」オブジェクトが
import gspread
gc = gspread.login(‘[email protected]’,’password’)
はAttributeErrorのログイン 'は属性がありません。「モジュール」オブジェクトを私は知っているgsspread
はlogin
メソッドを持っていないはAttributeError:「モジュール」オブジェクトが
のログイン'は属性を持っていません!
あなたが探しているのはauthorize
です。 - http://gspread.readthedocs.io/en/latest/oauth2.html
何をgspreadさ
credentials
が非常によく、ここでgsspreadによって文書化され得る方法についての手順:あなたは、理想的にはこのような何かをするだろう?そして、あなたはそれが 'ログイン'属性を持っていると思いますか?それが[this](https://github.com/burnash/gspread)の場合、それはありません。 –
次回は[documentation](https://github.com/burnash/gspread)を見てください!! '' gspread'はobvioslyにログインメソッドがありません。あなたが探しているものは 'authorize()'メソッドです –
でもPython 2.7を使用しています。 – Gizvo