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 122 123 124 125 126 127 128 129 130 131 132 133
|
# 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 datetime import date
from gettext import gettext as tr
from holidays.calendars import _CustomIslamicHolidays
from holidays.calendars.gregorian import JAN, JUL, AUG, SEP, OCT, NOV, DEC, THU, FRI, SAT
from holidays.constants import BANK, PUBLIC
from holidays.groups import InternationalHolidays, IslamicHolidays, StaticHolidays
from holidays.holiday_base import HolidayBase
class Qatar(HolidayBase, InternationalHolidays, IslamicHolidays, StaticHolidays):
"""Qatar holidays.
References:
* <https://en.wikipedia.org/wiki/Public_holidays_in_Qatar>
* [National Sports Day](https://web.archive.org/web/20250417141518/https://hukoomi.gov.qa/en/national-sport-day)
* [Qatar National Day](https://web.archive.org/web/20240522081644/https://www.qatar.qa/en/qatar/history-of-qatar-qatar-national-day-committee/)
* [Weekend](https://web.archive.org/web/20240930093123/https://www.arabnews.com/node/234601)
"""
country = "QA"
default_language = "ar_QA"
# %s (estimated).
estimated_label = tr("%s (المقدرة)")
start_year = 1971
supported_categories = (BANK, PUBLIC)
supported_languages = ("ar_QA", "en_US")
weekend = {FRI, SAT}
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.
"""
InternationalHolidays.__init__(self)
IslamicHolidays.__init__(
self, cls=QatarIslamicHolidays, show_estimated=islamic_show_estimated
)
StaticHolidays.__init__(self, QatarStaticHolidays)
super().__init__(*args, **kwargs)
def _get_weekend(self, dt: date) -> set[int]:
# Qatar switches from THU-FRI to FRI-SAT on Aug 1, 2003.
return {FRI, SAT} if dt >= date(2003, AUG, 1) else {THU, FRI}
def _populate_public_holidays(self):
if self._year >= 2012:
# National Sports Day.
self._add_holiday_2nd_tue_of_feb(tr("اليوم الوطني للرياضة"))
if self._year >= 2007:
# Qatar National Day.
self._add_holiday_dec_18(tr("اليوم الوطني لقطر"))
# Eid al-Fitr.
name = tr("عيد الفطر")
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 = tr("عيد الأضحى")
self._add_eid_al_adha_day(name)
self._add_eid_al_adha_day_two(name)
self._add_eid_al_adha_day_three(name)
def _populate_bank_holidays(self):
# New Year's Day.
self._add_new_years_day(tr("رأس السنة الميلادية"))
if self._year >= 2010:
# March Bank Holiday.
self._add_holiday_1st_sun_of_mar(tr("عطلة البنك"))
class QA(Qatar):
pass
class QAT(Qatar):
pass
class QatarIslamicHolidays(_CustomIslamicHolidays):
# https://web.archive.org/web/20250422212912/https://www.timeanddate.com/holidays/qatar/eid-al-adha
EID_AL_ADHA_DATES_CONFIRMED_YEARS = (2005, 2024)
EID_AL_ADHA_DATES = {
2008: (DEC, 9),
2009: (NOV, 28),
2010: (NOV, 15),
2016: (SEP, 10),
2017: (AUG, 31),
2018: (AUG, 22),
}
# https://web.archive.org/web/20241207022523/https://www.timeanddate.com/holidays/qatar/eid-al-fitr
EID_AL_FITR_DATES_CONFIRMED_YEARS = (2005, 2025)
EID_AL_FITR_DATES = {
2005: (NOV, 4),
2006: (OCT, 24),
2008: (OCT, 2),
2009: (SEP, 21),
2011: (AUG, 31),
2015: (JUL, 18),
}
class QatarStaticHolidays:
"""Qatar special holidays.
References:
* [New Year's Holiday](https://web.archive.org/web/20250119073018/https://www.expatica.com/qa/lifestyle/holidays/qatar-public-holidays-74585/)
"""
# New Year's Holiday.
name = tr("عطلة رأس السنة")
special_public_holidays = {
2025: (JAN, 2, name),
}
|