Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 谷歌日历报告API中的过滤器(使用谷歌API客户端)_Python_Python 3.x_Rest_Google Api_Google Workspace - Fatal编程技术网

Python 谷歌日历报告API中的过滤器(使用谷歌API客户端)

Python 谷歌日历报告API中的过滤器(使用谷歌API客户端),python,python-3.x,rest,google-api,google-workspace,Python,Python 3.x,Rest,Google Api,Google Workspace,我试图检索有关已创建的日历事件的日志,这些事件的标题中包含特定字符串。 我看到有一个选项可以使用参数和关系运算符向请求添加过滤器。 例如,我就是这样发现所有创建的事件,其标题如下:“test”: 但我不明白的是,如何检索包含随机字符串的所有事件。 文档中提到的唯一操作员是: == - 'equal to'. <> - 'not equal to'. It is URL-encoded (%3C%3E). < - 'less than'. It is URL-encoded (%

我试图检索有关已创建的日历事件的日志,这些事件的标题中包含特定字符串。 我看到有一个选项可以使用参数和关系运算符向请求添加过滤器。 例如,我就是这样发现所有创建的事件,其标题如下:“test”:

但我不明白的是,如何检索包含随机字符串的所有事件。 文档中提到的唯一操作员是:

== - 'equal to'.
<> - 'not equal to'. It is URL-encoded (%3C%3E).
< - 'less than'. It is URL-encoded (%3C).
<= - 'less than or equal to'. It is URL-encoded (%3C=).
> - 'greater than'. It is URL-encoded (%3E).
>= - 'greater than or equal to'. It is URL-encoded (%3E=).
==-“等于”。
-“不等于”。它是URL编码的(%3C%3E)。
<-“小于”。它是URL编码的(%3C)。
-“大于”。它是URL编码的(%3E)。
>=-“大于或等于”。它是URL编码的(%3E=)。
资料来源:

-活动“列表”api:

-日历报告API:

一些帮助将不胜感激! 提前感谢!:)

== - 'equal to'.
<> - 'not equal to'. It is URL-encoded (%3C%3E).
< - 'less than'. It is URL-encoded (%3C).
<= - 'less than or equal to'. It is URL-encoded (%3C=).
> - 'greater than'. It is URL-encoded (%3E).
>= - 'greater than or equal to'. It is URL-encoded (%3E=).