diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 17:35:14 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-16 17:35:14 +0100 |
commit | 58e1ba750e34f876c5435ee519483ffd87913854 (patch) | |
tree | bda61348dfa9de107b0795f544d562dc9cb4a67d /datamaps/core | |
parent | 4dff45ad4f5459e62fde51071bb03b7fbde12954 (diff) |
nearly got tests passing - need to get correct item from list
Diffstat (limited to '')
-rw-r--r-- | datamaps/core/temporal.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/datamaps/core/temporal.py b/datamaps/core/temporal.py index d368f6a..23d4b23 100644 --- a/datamaps/core/temporal.py +++ b/datamaps/core/temporal.py @@ -1,5 +1,6 @@ -import datetime import calendar +import datetime +import itertools class Month: @@ -146,6 +147,22 @@ class Quarter: self.start_date = self._start_date(self.quarter, self.year) self.end_date = self._end_date(self.quarter, self.year) + self.months = [] + self._populate_months() + + def _populate_months(self): + months_ints = [] + start_int = Quarter._start_months[self.quarter][0] + strt = itertools.count(start_int) + for x in range(3): + months_ints.append(next(strt)) + for m in months_ints: + if self.quarter == 4: + year = self.year + 1 + else: + year = self.year + self.months.append(Month(m, year)) + def __str__(self): return f"Q{self.quarter} {str(self.year)[2:]}/{str(self.year + 1)[2:]}" |