1

我一直在尝试了解如何将 list_ssheets() 与 parent_id 过滤器一起使用。

以下效果很好,并返回所有工作表的列表(包括我试图从文件夹中隔离的工作表):

the_list_of_sheets = gc.list_ssheets()

list_ssheets() 本身运行良好并返回所有工作表,但以下返回一个空列表(xxxx 是包含文件夹的 ID):

the_list_of_sheets = gc.list_ssheets('xxxxxxxxxxxxxxxxxxxxxxxxxxx')

我尝试了许多不同的方法来让它工作,但似乎无法达到正确的语法。

将 list_ssheets() 与 parent_id 一起使用以返回特定目录中的所有工作表的正确方法是什么?

谢谢!

4

1 回答 1

0

谢谢tehhowch,我想我已经解决了。

虽然我的目标文件夹中的工作表与我的 pgysheets 帐户共享,但文件夹本身不是!愚蠢的错误,但很高兴解决了它。

<directory xxxxxxxxxxx>  (must be shared!)
    <file 1>  (shared!)
    <file 2>  (not shared!)
    <file 3>  (shared!)

所以现在,

the_list_of_sheets = gc.list_ssheets('xxxxxxxxxxx')

返回包含文件 1 和文件 3 的列表。耶!

于 2018-07-03T19:52:16.550 回答