Inheritance diagram for GoogleCalendar.gCalendar:

Class representing a Google Calendar.
Public Member Functions | |
| def | __init__ |
| def | addEvent |
| To add a event into Google Calendar Account. | |
| def | getEvents |
| To get events from a calendar of a Google Calendar Account. | |
| def | getID |
| To get the Google Calendar ID. | |
| def | getSecureURL |
| To get the Google Calendar URL for manage the calendar. | |
| def | getTitle |
| To get the name of the calendar. | |
| def | newEvent |
| To add a new event into Google Calendar Account. | |
| def | setTitle |
| To set the name of the calendar. | |
| def GoogleCalendar.gCalendar.__init__ | ( | self, | ||
| googlecalmng | ||||
| ) |
| def GoogleCalendar.gCalendar.addEvent | ( | self, | ||
| event | ||||
| ) |
To add a event into Google Calendar Account.
| def GoogleCalendar.gCalendar.getEvents | ( | self, | ||
searchstring = '*' | ||||
| ) |
To get events from a calendar of a Google Calendar Account.
If no parameters are given, return All events Searchstring parameter can be used to perform a custom search of events, the method used is the same of search field showed in Google Calendar.
| def GoogleCalendar.gCalendar.getID | ( | self | ) |
To get the Google Calendar ID.
Only accessible with calendars retrieved from a Google Account.
| def GoogleCalendar.gCalendar.getSecureURL | ( | self | ) |
To get the Google Calendar URL for manage the calendar.
Only accessible with calendars retrieved from a Google Account.
| def GoogleCalendar.gCalendar.getTitle | ( | self | ) |
To get the name of the calendar.
| def GoogleCalendar.gCalendar.newEvent | ( | self, | ||
| title, | ||||
| content, | ||||
| where, | ||||
| start, | ||||
| end | ||||
| ) |
To add a new event into Google Calendar Account.
| def GoogleCalendar.gCalendar.setTitle | ( | self, | ||
| content | ||||
| ) |
To set the name of the calendar.
1.5.1