-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
120 lines (105 loc) · 4.95 KB
/
main.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
"""Module providing a function generating JSON data for Calendar."""
import json
from datetime import date
from pathlib import Path
from utils.check_date import is_valid_date
from utils.constants import CALENDAR_STYLES
from utils.date_utils import (
get_weekday,
old_new_date,
pascha_difference,
string_to_date,
)
from utils.moon_phase import get_moon_phase
from utils.pascha import calculate_pascha
# Define the constants
BUILD_FOLDER = "build"
PASCHALION = "paschalion"
YEAR_END = 2100
YEAR_START = 1924
def main() -> None:
"""Generate JSON data for the Calendar."""
Path(BUILD_FOLDER).mkdir(parents=True, exist_ok=True)
Path(f"{BUILD_FOLDER}/{PASCHALION}").mkdir(parents=True, exist_ok=True)
for calendar_style in CALENDAR_STYLES:
Path(f"{BUILD_FOLDER}/{calendar_style}").mkdir(parents=True, exist_ok=True)
paschalion_data = {}
paschalion_data["pascha_date"] = {}
for current_year in range(YEAR_START, YEAR_END):
pascha_date = calculate_pascha(
current_year,
calendar_style,
)
paschalion_data["pascha_date"][current_year] = pascha_date
with Path(f"{BUILD_FOLDER}/{PASCHALION}/{calendar_style}.json").open(
"w",
encoding="utf-8",
) as json_file:
json.dump(paschalion_data, json_file, indent=4)
calendar_data = {}
calendar_data[str(current_year)] = {}
for current_month in range(1, 13):
calendar_data[str(current_year)][str(current_month)] = {}
for current_day in range(1, 32):
if is_valid_date(current_year, current_month, current_day):
date_old_new = old_new_date(
date(current_year, current_month, current_day),
calendar_style,
)
calendar_data[str(current_year)][str(current_month)][
str(current_day)
] = {}
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["date_old"] = date_old_new["date_old"]
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["date_new"] = date_old_new["date_new"]
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["weekday_index"] = get_weekday(
date(current_year, current_month, current_day),
calendar_style,
)
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["moon_phase_index"] = get_moon_phase(
current_year,
current_month,
current_day,
calendar_style,
)
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["pascha_distance"] = pascha_difference(
date(current_year, current_month, current_day),
string_to_date(pascha_date),
)
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["fasting_season_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["fasting_laymen_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["fasting_monks_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["sunday_description_gr_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["sunday_description_ro_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["sunday_description_ru_index"] = ""
calendar_data[str(current_year)][str(current_month)][
str(current_day)
]["sunday_lectionary_index"] = ""
with Path(f"{BUILD_FOLDER}/{calendar_style}/{current_year}.json").open(
"w",
encoding="utf-8",
) as json_file:
json.dump(calendar_data, json_file, indent=4)
if __name__ == "__main__":
main()