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 121
|
# 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 <dr.prodigy.github@gmail.com> (c) 2017-2023
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
# Website: https://github.com/vacanza/holidays
# License: MIT (see LICENSE file)
from holidays.calendars import _CustomIslamicHolidays
from holidays.calendars.gregorian import JAN, APR, OCT
from holidays.groups import (
ChristianHolidays,
IslamicHolidays,
InternationalHolidays,
StaticHolidays,
)
from holidays.holiday_base import HolidayBase
class Comoros(
HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays, StaticHolidays
):
"""Comoros holidays.
References:
* <https://en.wikipedia.org/wiki/Public_holidays_in_the_Comoros>
* [Prophet's Birthday 2021](https://web.archive.org/web/20250712053206/https://scontent-del1-2.xx.fbcdn.net/v/t39.30808-6/471586197_1113861707132176_3696210890184034016_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=833d8c&_nc_ohc=3hfvuVNGVbMQ7kNvwHvrgbW&_nc_oc=AdnuDzvtcvdBJMoN-qSW7Pnx2fnzj2TFgwMSRklpM_Na-5AaB9y8D0U5BINcxL-vVL0&_nc_zt=23&_nc_ht=scontent-del1-2.xx&_nc_gid=HWC_59SRsyDfwGxku5bqXw&oh=00_AfSk0LCPS7PARPjdX5-vfM_lr7WxZnrkA9jRyrdUFhoyMQ&oe=68736290)
"""
country = "KM"
# %s (estimated).
estimated_label = "%s (estimated)"
# Independence from France on July 6, 1975.
start_year = 1976
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=ComorosIslamicHolidays, show_estimated=islamic_show_estimated
)
StaticHolidays.__init__(self, ComorosStaticHolidays)
super().__init__(*args, **kwargs)
def _populate_public_holidays(self):
# New Year's Day.
self._add_new_years_day("New Year's Day")
# Cheikh al Maarouf Day.
self._add_holiday_mar_18("Cheikh al Maarouf Day")
# Labor Day.
self._add_labor_day("Labour Day")
# National Day.
self._add_holiday_jul_6("National Day")
if self._year >= 2006:
# Maore Day.
self._add_holiday_nov_12("Maore Day")
# Christmas Day.
self._add_christmas_day("Christmas Day")
# Islamic New Year.
self._add_islamic_new_year_day("Islamic New Year")
# Prophet's Birthday.
self._add_mawlid_day("Prophet's Birthday")
# Isra' and Mi'raj.
self._add_isra_and_miraj_day("Isra' and Mi'raj")
# Eid al-Fitr.
name = "Eid al-Fitr"
self._add_eid_al_fitr_day(name)
self._add_eid_al_fitr_day_two(name)
self._add_eid_al_fitr_day_three(name)
# Eid al-Adha.
name = "Eid al-Adha"
self._add_eid_al_adha_day(name)
self._add_eid_al_adha_day_two(name)
class KM(Comoros):
pass
class COM(Comoros):
pass
class ComorosIslamicHolidays(_CustomIslamicHolidays):
MAWLID_DATES = {
2021: (OCT, 19),
}
class ComorosStaticHolidays:
"""Comoros special holidays.
References:
* [Décret N°24-056PR](https://web.archive.org/web/20250717033820/https://munganyo.km/decrees/225)
* [Décret N°25-008PR](https://web.archive.org/web/20250715223159/https://munganyo.km/decrees/374)
"""
special_public_holidays = {
2024: (APR, 13, "National Holiday"),
2025: (JAN, 30, "Election Partial Day Holiday"),
}
|