Python - Using Google Calendar API -
i've got little problem google calendar api.
i want add event summary (and other options) using array:
event = { 'summary:': [temp_sheet[0]], 'start': { 'datetime': '2017-07-28t19:00:00', 'timezone': 'europe/warsaw', }, 'end': { 'datetime': '2017-07-29t07:30:00', 'timezone': 'europe/warsaw', } }
temp_sheet[0]
holds text , want put summary. after checking calendar, there 'there no summary'
any ;>?
thanks! (:
there field of summary , decription of event.
official documentation https://developers.google.com/google-apps/calendar/v3/reference/events
Comments
Post a Comment