예제 #1
0
 def __init__(self, email, password):
     CalendarEventEntry.__init__(self)
     self.calendar_service = CalendarService()
     self.calendar_service.email = email
     self.calendar_service.password = password
     self.calendar_service.source = 'Google-Calendar_Python_Sample-1.0'
     try:
         self.calendar_service.ProgrammaticLogin()
     except:
         self.calendar_service = None
예제 #2
0
 def __init__(self, email, password): 
     CalendarEventEntry.__init__(self)                                   
     self.calendar_service = CalendarService()
     self.calendar_service.email = email
     self.calendar_service.password = password
     self.calendar_service.source = 'Google-Calendar_Python_Sample-1.0'
     try:
         self.calendar_service.ProgrammaticLogin()
     except:
         self.calendar_service=None