fullje
fullje

Reputation: 91

Python - Using Google Calendar API

i've got a little problem with 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 a some text and i want to put it to the summary. But after checking Calendar, there is 'There is no Summary'

Any Help ;>?

Thanks! (:

Upvotes: 1

Views: 78

Answers (1)

Chandrasekhar Raman
Chandrasekhar Raman

Reputation: 706

There is a field of summary and decription of the event.

OFFICIAL DOCUMENTATION https://developers.google.com/google-apps/calendar/v3/reference/events

Upvotes: 2

Related Questions