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.
Looks like you shouldn't access event['summary'], but event['start.datetime'].
event['summary']
event['start.datetime']
See the docs for Event.