2018-05-04 13:53:29 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2014-08-06 11:43:40 +02:00
|
|
|
class Date(object):
|
|
|
|
"""docstring for Date"""
|
|
|
|
def __init__(self, *args):
|
|
|
|
if len(args) == 3:
|
|
|
|
self.year = str(args[0])
|
|
|
|
self.month = str(args[1])
|
|
|
|
self.day = str(args[2]).zfill(2)
|
|
|
|
if len(args) == 1:
|
|
|
|
self.year = str(args[0])[:4]
|
|
|
|
self.month = str(args[0])[4:6]
|
|
|
|
self.day = str(args[0])[6:]
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "{0}{1}{2}".format(self.year, self.month, self.day)
|
|
|
|
|
|
|
|
def _get_year(self):
|
|
|
|
return self.year
|
|
|
|
|
|
|
|
def _get_month(self):
|
|
|
|
return self.month
|
|
|
|
|
|
|
|
def _get_day(self):
|
|
|
|
return self.day
|
|
|
|
|
|
|
|
def _set_year(self, year):
|
|
|
|
self.year = year
|
|
|
|
|
|
|
|
def _set_month(self, month):
|
|
|
|
self.month = month
|
|
|
|
|
|
|
|
def _set_day(self, day):
|
|
|
|
self.day = day
|
2018-05-04 13:53:29 +02:00
|
|
|
|
2016-07-05 16:53:03 +02:00
|
|
|
def substract_day(self, numDay):
|
2017-11-20 12:12:06 +01:00
|
|
|
import datetime
|
|
|
|
computed_date = datetime.date(int(self.year), int(self.month), int(self.day)) - datetime.timedelta(numDay)
|
|
|
|
comp_year = str(computed_date.year)
|
2016-07-05 16:53:03 +02:00
|
|
|
comp_month = str(computed_date.month).zfill(2)
|
|
|
|
comp_day = str(computed_date.day).zfill(2)
|
2017-11-20 12:12:06 +01:00
|
|
|
return comp_year + comp_month + comp_day
|