예제 #1
0
 def __repr__(self):
     return "<%s %0.2fh @ %s>"%(self.task_id,self.duration/3600.0,time2dt(self.start_time).strftime("%m%dT%H%M"))
예제 #2
0
파일: api.py 프로젝트: joranbeasley/asana1
 def item_month(itm):
     tm = time2dt(itm.start_time)
     return tm.year,tm.month
예제 #3
0
파일: api.py 프로젝트: joranbeasley/asana1
 def item_year(itm):
     tm = time2dt(itm.start_time)
     return tm.year
예제 #4
0
파일: api.py 프로젝트: joranbeasley/asana1
 def item_week(itm):
     tm = time2dt(itm.start_time)
     return tm.year,tm.isocalendar()[1]