# holidays # -------- # A fast, efficient Python library for generating country, province and state # specific sets of holidays on the fly. It aims to make determining whether a # specific date is a holiday as fast and flexible as possible. # # Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file) # dr-prodigy (c) 2017-2023 # ryanss (c) 2014-2017 # Website: https://github.com/vacanza/holidays # License: MIT (see LICENSE file) from gettext import gettext as tr from holidays.calendars import _CustomIslamicHolidays from holidays.calendars.gregorian import MAR, APR, MAY, JUN, JUL, AUG, SEP from holidays.groups import ChristianHolidays, InternationalHolidays, IslamicHolidays from holidays.holiday_base import HolidayBase class CentralAfricanRepublic( HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays ): """Central African Republic holidays. References: * * [PUBLIC HOLIDAYS](https://web.archive.org/web/20171215122602/http://www.ais-asecna.org/pdf/gen/gen-2-1/04gen2-1-01.pdf) * * * """ country = "CF" default_language = "fr" supported_languages = ("en_US", "fr") # %s (estimated). estimated_label = tr("%s (estimé)") # December 1, 1958: Autonomy within the French Community. start_year = 1959 def __init__(self, *args, islamic_show_estimated: bool = True, **kwargs): """ Args: islamic_show_estimated: Whether to add "estimated" label to Islamic holidays name if holiday date is estimated. """ ChristianHolidays.__init__(self) InternationalHolidays.__init__(self) IslamicHolidays.__init__( self, cls=CentralAfricanRepublicIslamicHolidays, show_estimated=islamic_show_estimated ) super().__init__(*args, **kwargs) def _populate_public_holidays(self): # New Year's Day. self._add_new_years_day(tr("Jour de l'an")) if self._year >= 1960: # Barthélemy Boganda Day. self._add_holiday_mar_29(tr("Journée Barthélemy Boganda")) # Easter Monday. self._add_easter_monday(tr("Lundi de Pâques")) # Labor Day. self._add_labor_day(tr("Fête du Travail")) # Ascension Day. self._add_ascension_thursday(tr("Ascension")) # Whit Monday. self._add_whit_monday(tr("Lundi de Pentecôte")) if self._year >= 2007: # General Prayer Day. self._add_holiday_jun_30(tr("Journée de prière générale")) if self._year >= 1960: # Independence Day. self._add_holiday_aug_13(tr("Jour de l'indépendance")) # Assumption Day. self._add_assumption_of_mary_day(tr("Assomption")) # All Saints' Day. self._add_all_saints_day(tr("Toussaint")) # National Day. name = tr("Fête nationale") if self._year in {1977, 1978}: self._add_holiday_dec_4(name) else: self._add_holiday_dec_1(name) # Christmas Day. self._add_christmas_day(tr("Jour de Noël")) if self._year >= 2015: # Eid al-Fitr. self._add_eid_al_fitr_day(tr("Aïd al-Fitr")) # Eid al-Adha. self._add_eid_al_adha_day(tr("Aïd al-Adha")) class CF(CentralAfricanRepublic): pass class CAF(CentralAfricanRepublic): pass class CentralAfricanRepublicIslamicHolidays(_CustomIslamicHolidays): EID_AL_ADHA_DATES = { 2015: (SEP, 24), 2016: (SEP, 13), 2017: (SEP, 2), 2018: (AUG, 21), 2019: (AUG, 11), 2020: (JUL, 31), 2021: (JUL, 20), 2022: (JUL, 9), 2023: (JUN, 28), 2024: (JUN, 16), 2025: (JUN, 7), } EID_AL_FITR_DATES = { 2015: (JUL, 18), 2016: (JUL, 7), 2017: (JUN, 26), 2018: (JUN, 15), 2019: (JUN, 4), 2020: (MAY, 24), 2021: (MAY, 13), 2022: (MAY, 2), 2023: (APR, 21), 2024: (APR, 10), 2025: (MAR, 30), }