Python,在Google日历上搜索事件描述

时间:2015-08-04 18:03:00

标签: python google-calendar-api

我有Python example script Google提供了工作,但我无法弄清楚如何只返回事件描述中某些单词的结果。例如,我希望能够返回一个事件列表,其中包含" Baltimore"在描述中。任何人都可以提供一些示例或指向我一些文档吗?

2 个答案:

答案 0 :(得分:0)

没有任何类型的示例输出我会认为您想要针对子字符串

搜索返回的字符串
string = " i live in Baltimore"
subString = "Baltimore"
print subString in string

这会返回true

答案 1 :(得分:0)

想出来,非常简单:

while True:
  events = service.events().list(calendarId='primary', q='Baltimore', pageToken=page_token).execute()
  for event in events['items']:
    print event['summary']
  page_token = events.get('nextPageToken')
  if not page_token:
    break