如何在Google驱动API [python]中使用maxResult或q search作为Files.list方法的参数?

时间:2012-12-06 12:50:06

标签: python-2.7 google-drive-api

本教程中的

https://developers.google.com/drive/v2/reference/files/list

在它的python示例中,如何在代码中使用maxresult和q搜索? 我试图在参数列表中分配这些,但它无法正常工作。

1 个答案:

答案 0 :(得分:1)

尝试类似:

result = drive.files()。list(q ='“me”in owner',maxResults = 10).execute()

这将获取您拥有的前10个文件。