-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelper.py
30 lines (25 loc) · 880 Bytes
/
helper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import numpy as np
from config import load_config
from calendar import isleap
from typing import List
class DateHelper:
def __init__(self):
pass
@staticmethod
def get_days_in_month(year: int) -> List[int]:
days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
if (isleap(year)):
days_in_month[1] = 29
return days_in_month
@staticmethod
def get_month(day: int) -> int:
config = load_config()
return np.searchsorted(np.cumsum(DateHelper.get_days_in_month(config.year)), day + 1)
@staticmethod
def get_hours(year: int) -> int:
days_in_year = sum(DateHelper.get_days_in_month(year))
return days_in_year * 24
@staticmethod
def get_days(year: int) -> int:
days_in_year = sum(DateHelper.get_days_in_month(year))
return days_in_year