-6
import gspread
gc = gspread.login(‘[email protected]’,’password’)
AttributeError的:「模塊」對象有沒有屬性「登錄」AttributeError的:「模塊」對象有沒有屬性「登錄」
import gspread
gc = gspread.login(‘[email protected]’,’password’)
AttributeError的:「模塊」對象有沒有屬性「登錄」AttributeError的:「模塊」對象有沒有屬性「登錄」
的gsspread
據我所知,沒有login
方法!
我想你要找的是authorize
。
您理想的情況做這樣的事情:
import gspread
gc = gspread.authorize(credentials) # check link below on how to obtain the credentials
如何獲得credentials
有出色的gsspread這裏介紹的方法 - http://gspread.readthedocs.io/en/latest/oauth2.html
什麼是gspread?什麼讓你覺得它有一個'登錄'屬性?如果它是[this](https://github.com/burnash/gspread),它不會。 –
下次正確查看[documentation](https://github.com/burnash/gspread)!!,'gspread'顯然沒有登錄方法,也許你正在尋找的是'authorize()'方法 –
但我使用Python 2.7 – Gizvo