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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
# 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 gettext import gettext as tr
from holidays.calendars.gregorian import FEB, APR, JUN, SEP, SUN
from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays
from holidays.observed_holiday_base import (
ObservedHolidayBase,
MON_TO_NEXT_TUE,
SAT_SUN_TO_NEXT_MON,
SAT_SUN_TO_NEXT_TUE,
SAT_SUN_TO_NEXT_MON_TUE,
SAT_SUN_TO_PREV_FRI,
)
class Anguilla(ObservedHolidayBase, ChristianHolidays, InternationalHolidays, StaticHolidays):
"""Anguilla holidays.
References:
- [Public Holidays For 2011](https://web.archive.org/web/20110531155208/https://www.gov.ai/holiday.php)
- [Public Holidays For 2012](https://web.archive.org/web/20120316123834/http://www.gov.ai/holiday.php)
- [Public Holidays For 2013](https://web.archive.org/web/20131113151001/http://www.gov.ai/holiday.php)
- [Public Holidays For 2014](https://web.archive.org/web/20141113163349/http://www.gov.ai/holiday.php)
- [Public Holidays For 2015](https://web.archive.org/web/20151113150558/http://www.gov.ai/holiday.php)
- [Public Holidays For 2016](https://web.archive.org/web/20161021015139/http://www.gov.ai/holiday.php)
- [Public Holidays For 2017](https://web.archive.org/web/20170830143632/http://www.gov.ai/holiday.php)
- [Public Holidays For 2018](https://web.archive.org/web/20181127040220/http://www.gov.ai/holiday.php)
- [Public Holidays For 2019](https://web.archive.org/web/20191021020537/http://www.gov.ai/holiday.php)
- [Public Holidays For 2020](https://web.archive.org/web/20210205021056/http://www.gov.ai/holiday.php)
- [Public Holidays For 2021](https://web.archive.org/web/20210901183726/http://www.gov.ai/holiday.php)
- [Public Holidays For 2022](https://web.archive.org/web/20221011200016/http://www.gov.ai/holiday.php)
- [Public Holidays For 2024](https://web.archive.org/web/20241004074741/https://www.gov.ai/service/public-holidays-for-2024)
- [Public Holidays For 2025](https://web.archive.org/web/20250425025259/https://www.gov.ai/service/public-holidays-for-2025)
- [Public Holidays Regulations R.R.A. P130-1 as of DEC 15, 2000](https://web.archive.org/web/20250611054639/https://laws.gov.ai/storage/pdfs/2000%20AXA%20Revised%20Statutes%20and%20Regulations/PDF%20(Regulations)/P-R.R.A.s/P130-Public%20Holidays%20Regulations.pdf)
- [Public Holidays Regulations R.R.A. P130-1 as of DEC 15, 2010](https://web.archive.org/web/20250611055143/https://laws.gov.ai/storage/pdfs/2010%20AXA%20Revised%20Statutes%20and%20Regulations/PDF%20(Regulations)/P-R.R.A.s/P130-Public%20Holidays%20Regulations.pdf)
"""
country = "AI"
default_language = "en_AI"
supported_languages = ("en_AI", "en_US")
# %s (observed).
observed_label = tr("%s (observed)")
# Declaration of independence May 30, 1967,
# but the 2000 revision is the earliest comprehensive legal update.
start_year = 2001
weekend = {SUN}
def __init__(self, *args, **kwargs):
ChristianHolidays.__init__(self)
InternationalHolidays.__init__(self)
StaticHolidays.__init__(self, cls=AnguillaStaticHolidays)
kwargs.setdefault("observed_rule", SAT_SUN_TO_NEXT_MON)
super().__init__(*args, **kwargs)
def _populate_public_holidays(self):
# New Year's Day.
self._add_observed(self._add_new_years_day(tr("New Year's Day")))
if self._year >= 2010:
# James Ronald Webster Day.
self._add_observed(self._add_holiday_mar_2(tr("James Ronald Webster Day")))
# Good Friday.
self._add_good_friday(tr("Good Friday"))
# Easter Sunday.
self._add_easter_sunday(tr("Easter Sunday"))
# Easter Monday.
self._add_easter_monday(tr("Easter Monday"))
# Labor Day.
self._add_observed(self._add_labor_day(tr("Labour Day")))
# Whit Monday.
whit_monday = self._add_whit_monday(tr("Whit Monday"))
name = (
# Queen's Birthday.
tr("Celebration of the Birthday of Her Majesty the Queen")
if self._year <= 2022
# King's Birthday.
else tr("Celebration of the Birthday of His Majesty the King")
)
if self._year == 2022:
self._add_holiday_jun_3(name)
elif self._year <= 2021:
self._add_holiday_2nd_mon_of_jun(name)
else:
self._add_holiday_3rd_mon_of_jun(name)
# Anguilla Day.
name = tr("Anguilla Day")
self._add_observed(
dt := self._add_holiday_may_30(name),
name=name,
rule=MON_TO_NEXT_TUE
if dt == whit_monday
else (
SAT_SUN_TO_NEXT_TUE
if self._get_observed_date(dt, SAT_SUN_TO_NEXT_MON) == whit_monday
else SAT_SUN_TO_NEXT_MON
),
)
# August Monday.
self._add_holiday_1st_mon_of_aug(tr("August Monday"))
# August Thursday.
self._add_holiday_3_days_past_1st_mon_of_aug(tr("August Thursday"))
# Constitution Day.
self._add_holiday_4_days_past_1st_mon_of_aug(tr("Constitution Day"))
self._add_observed(
self._add_holiday_dec_19(
# National Heroes and Heroines Day.
tr("National Heroes and Heroines Day")
if self._year >= 2011
# Separation Day.
else tr("Separation Day")
),
rule=SAT_SUN_TO_PREV_FRI,
)
self._add_observed(
# Christmas Day.
self._add_christmas_day(tr("Christmas Day")),
rule=SAT_SUN_TO_NEXT_MON_TUE,
)
self._add_observed(
# Boxing Day.
self._add_christmas_day_two(tr("Boxing Day")),
rule=SAT_SUN_TO_NEXT_MON_TUE,
)
class AI(Anguilla):
pass
class AIA(Anguilla):
pass
class AnguillaStaticHolidays:
"""Anguilla special holidays.
References:
- [Government of Anguilla Official Gazette](https://web.archive.org/web/20250304213202/https://gov.ai/document/2025-03-04-123357_2051160063.pdf)
- [Mourning the Death of Her Majesty Queen Elizabeth II](https://web.archive.org/web/20250611052948/https://theanguillian.com/2022/09/mourning-the-death-of-her-majesty-queen-elizabeth-ii/)
"""
special_public_holidays = {
# Royal Wedding of Prince William & Kate Middleton.
2011: (APR, 29, tr("Royal Wedding of Prince William & Kate Middleton")),
# Diamond Jubilee Celebration of Her Majesty The Queen.
2012: (JUN, 4, tr("Diamond Jubilee Celebration of Her Majesty The Queen")),
# Mourning the Death of Her Majesty The Queen Elizabeth II.
2022: (SEP, 19, tr("Mourning the Death of Her Majesty The Queen Elizabeth II")),
# Special Public Holiday.
2025: (FEB, 28, tr("Special Public Holiday")),
}
|