How to access the time of an event of Google Calendar?

后端 未结 1 1578
南方客
南方客 2021-01-29 11:15

I am using Google Calendar APIs and Google Client Library for Python. The code that I use gives the list of the events that falls in a given date range but the time is missing.

相关标签:
1条回答
  • 2021-01-29 12:02

    Looks like you shouldn't access event['summary'], but event['start.datetime'].

    See the docs for Event.

    0 讨论(0)
提交回复
热议问题