debian-workalendar/workalendar/europe/turkey.py

33 lines
1.0 KiB
Python

from datetime import timedelta
from ..core import NewYearsDayMixin, IslamicCalendar, SAT, SUN
from ..registry_tools import iso_register
@iso_register('TR')
class Turkey(NewYearsDayMixin, IslamicCalendar):
'Turkey'
shift_new_years_day = True
# Even though they're using an islamic calendar, the work week is MON->FRI
WEEKEND_DAYS = (SAT, SUN)
# Islamic Holidays
include_eid_al_fitr = True
length_eid_al_fitr = 3
include_eid_al_adha = True
length_eid_al_adha = 4
FIXED_HOLIDAYS = NewYearsDayMixin.FIXED_HOLIDAYS + (
(4, 23, "National Sovereignty and Children's Day"),
(5, 1, "Labor and Solidarity Day"),
(5, 19, "Commemoration of Atatürk, Youth and Sports Day"),
(7, 15, "Democracy and National Unity Day"),
(8, 30, "Victory Day"),
(10, 29, "Republic Day"),
)
def get_delta_islamic_holidays(self, year):
"""
Turkey Islamic holidays are shifted by one day every year.
"""
return timedelta(days=-1)