尝试通过python中的gspread写入Google表格

时间:2019-02-27 23:26:59

标签: python python-3.x google-sheets google-sheets-api gspread

我正在尝试向Google工作表中写入一些数据,并不断收到此错误。

文件“ anaconda / lib / python3.6 / site-packages / pyasn1_modules / rfc2459.py”,第1014行,位于AttributeTypeAndValue中     openType = opentype.OpenType('type',certificateAttributesMap))

TypeError: init ()获得了意外的关键字参数'openType'

我正在python 3.6.0中使用Gspread 2.2.1。 TextEditor是Spyder 2.7。

这是我的代码。

如有任何疑问,请告诉我。

任何帮助都会有所帮助。

  import gspread  
  from oauth2client.service_account import ServiceAccountCredentials

  scope = ['https://spreadsheets.google.com/feeds']
  creds = 
  ServiceAccountCredentials.from_json_keyfile_name('client_secret.json', scope)
  client = gspread.authorize(creds)

  sheet = client.open("TEST").sheet1
  sheet.update_cell(1, 1, "I just wrote to a spreadsheet using Python!")

谢谢!

0 个答案:

没有答案