Using the google drive API to download a spreadsheet in csv format

前端 未结 7 767
执笔经年
执笔经年 2020-11-30 19:10

I\'m sorry if this is an obvious question, I\'m still pretty new to the API. I\'m using the python drive api library, and trying to download a google spreadsheet as a csv.

7条回答
  •  死守一世寂寞
    2020-11-30 19:43

    Note, as of April 2015 DocsList was depreciated, and has been replaced by DriveApp. Many of the DriveApp methods are identical to DocsList. So, in many cases, you can simply replace DocsList with DriveApp. So replace DocsList.createFile() with DriveApp.createFile()

    How to update DocsList to DriveApp in my code

提交回复
热议问题