File: antarctica.py

package info (click to toggle)
python-holidays 0.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,296 kB
  • sloc: python: 117,830; javascript: 85; makefile: 59
file content (58 lines) | stat: -rw-r--r-- 1,735 bytes parent folder | download
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
#  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.groups import ChristianHolidays, InternationalHolidays
from holidays.holiday_base import HolidayBase


class Antarctica(HolidayBase, ChristianHolidays, InternationalHolidays):
    """Antarctica holidays.

    References:
        * <https://en.wikipedia.org/wiki/Antarctica_Day>
        * <https://en.wikipedia.org/wiki/Midwinter_Day>
    """

    country = "AQ"
    # The Antarctica Treaty System became active on June 23rd, 1961.
    start_year = 1962

    def __init__(self, *args, **kwargs):
        ChristianHolidays.__init__(self)
        InternationalHolidays.__init__(self)
        super().__init__(*args, **kwargs)

    def _populate_public_holidays(self):
        # New Year's Day.
        self._add_new_years_day("New Year's Day")

        # Midwinter Day.
        name = "Midwinter Day"
        if self._is_leap_year():
            self._add_holiday_jun_20(name)
        else:
            self._add_holiday_jun_21(name)

        if self._year >= 2010:
            # Antarctica Day.
            self._add_holiday_dec_1("Antarctica Day")

        # Christmas Day.
        self._add_christmas_day("Christmas Day")


class AQ(Antarctica):
    pass


class ATA(Antarctica):
    pass