コード例 #1
0
ファイル: objects.py プロジェクト: untitaker/python-webuntis
 def end(self):
     """The end date"""
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #2
0
ファイル: objects.py プロジェクト: untitaker/python-webuntis
 def end(self):
     """The end of the holiday"""
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #3
0
ファイル: objects.py プロジェクト: untitaker/python-webuntis
 def start(self):
     """The start date of the schoolyear, as datetime object"""
     return datetime_utils.parse_date(self._data[u'startDate'])
コード例 #4
0
ファイル: objects.py プロジェクト: untitaker/python-webuntis
 def date(self):
     """the date of the classregevent."""
     return datetime_utils.parse_date(self._data[u'date'])
コード例 #5
0
ファイル: objects.py プロジェクト: untitaker/python-webuntis
 def start(self):
     """The start date of the holiday, as a datetime object."""
     return datetime_utils.parse_date(self._data[u'startDate'])
コード例 #6
0
ファイル: objects.py プロジェクト: joshmuente/python-webuntis
 def end(self):
     """The end date"""
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #7
0
ファイル: objects.py プロジェクト: joshmuente/python-webuntis
 def date(self):
     """the date of the classregevent."""
     return datetime_utils.parse_date(self._data[u'date'])
コード例 #8
0
ファイル: objects.py プロジェクト: joshmuente/python-webuntis
 def end(self):
     """The end of the holiday"""
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #9
0
ファイル: objects.py プロジェクト: joshmuente/python-webuntis
 def start(self):
     """The start date of the schoolyear, as datetime object"""
     return datetime_utils.parse_date(self._data[u'startDate'])
コード例 #10
0
 def end(self):
     '''The end date'''
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #11
0
ファイル: objects.py プロジェクト: joshmuente/python-webuntis
 def start(self):
     """The start date of the holiday, as a datetime object."""
     return datetime_utils.parse_date(self._data[u'startDate'])
コード例 #12
0
 def end(self):
     '''The end of the holiday'''
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #13
0
ファイル: objects.py プロジェクト: AugustH/python-webuntis
 def end(self):
     '''The end date'''
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #14
0
ファイル: objects.py プロジェクト: AugustH/python-webuntis
 def end(self):
     '''The end of the holiday'''
     return datetime_utils.parse_date(self._data[u'endDate'])
コード例 #15
0
ファイル: objects.py プロジェクト: iterativ/python-webuntis
 def start(self):
     '''The start date of the schoolyear, as datetime object'''
     return datetime_utils.parse_date(self._data['startDate'])
コード例 #16
0
ファイル: objects.py プロジェクト: iterativ/python-webuntis
 def start(self):
     '''The start date of the holiday, as a datetime object.'''
     return datetime_utils.parse_date(self._data['startDate'])