예제 #1
0
파일: session.py 프로젝트: Shazzbot/gtwpy
 def __repr__(self):
     return "Session(%s)" % kwargs_str(
         self,
         attrs=[
             'key', '_starts_at', '_ends_at', '_started_at', '_ended_at',
             'attendant_count'
         ],
         cached=['attendees'])
예제 #2
0
파일: webinar.py 프로젝트: prior/gtwpy
 def __repr__(self): 
     return "Webinar(%s)" % kwargs_str(self,attrs=['organizer','key','subject','description'],cached=['sessions','registrations'])
예제 #3
0
파일: webinar.py 프로젝트: Shazzbot/gtwpy
 def __repr__(self):
     return "Webinar(%s)" % kwargs_str(
         self,
         attrs=['organizer', 'key', 'subject', 'description'],
         cached=['sessions', 'registrations'])
예제 #4
0
파일: session.py 프로젝트: prior/gtwpy
 def __repr__(self): 
     return "Session(%s)" % kwargs_str(self,attrs=['key','_starts_at','_ends_at','_started_at','_ended_at','attendant_count'], cached=['attendees'])