if (date >= self._start and date <= self._end)\
or (date.year == self._start.year and date.month == self._start.month)\
or (date.year == self._end.year and date.month == self._end.month):
if (date >= self._start and date <= self._end)\
or (date.year == self._start.year and date.month == self._start.month)\
or (date.year == self._end.year and date.month == self._end.month):
with open(dir_data / csv_meteo, "r") as f:
reader = DictReader(f, delimiter=';')
for row in reader:
with open(dir_data / csv_meteo, "r") as f:
reader = DictReader(f, delimiter=';')
for row in reader: