示例#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'])