# 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 datetime import date from gettext import gettext as tr from holidays.calendars.germany_school import ( ASCENSION_WHIT_BREAK, AUTUMN_BREAK, CHRISTMAS_BREAK, EASTER_SPRING_BREAK, GERMANY_SCHOOL_HOLIDAYS, SUMMER_BREAK, WINTER_BREAK, ) from holidays.calendars.gregorian import JAN, MAY, JUN, OCT, DEC from holidays.constants import CATHOLIC, PUBLIC, SCHOOL from holidays.groups import ChristianHolidays, InternationalHolidays, StaticHolidays from holidays.holiday_base import HolidayBase class Germany(HolidayBase, ChristianHolidays, InternationalHolidays, StaticHolidays): """Germany holidays. References: * * * [German Unity Day](https://web.archive.org/web/20251011161644/https://www.gesetze-im-internet.de/einigvtr/art_2.html) * [KMK school holidays](https://web.archive.org/web/20260426091657/https://www.kmk.org/service/ferienregelung/ferienkalender.html) Subdivisions Holidays References: * [Brandenburg](https://web.archive.org/web/20251002092001/https://bravors.brandenburg.de/gesetze/ftg_2015) * [Berlin](https://web.archive.org/web/20250518234750/http://gesetze.berlin.de/bsbe/document/jlr-FeiertGBEV10P1) * [Baden-Württemberg](https://web.archive.org/web/20240914215438/https://www.landesrecht-bw.de/bsbw/document/jlr-FeiertGBWpP1) * [Bayern](https://web.archive.org/web/20250906201237/https://www.gesetze-bayern.de/Content/Document/BayFTG/true) * [Bremen](https://web.archive.org/web/20240430101614/https://www.transparenz.bremen.de/metainformationen/gesetz-ueber-die-sonn-gedenk-und-feiertage-vom-12-november-1954-145882) * [Hessen](https://web.archive.org/web/20250421183249/http://www.rv.hessenrecht.hessen.de/bshe/document/jlr-FeiertGHE1952rahmen) * [Hamburg](https://web.archive.org/web/20250618110249/https://www.landesrecht-hamburg.de/bsha/document/jlr-FeiertGHAV3P1) * [Mecklenburg-Vorpommern](https://web.archive.org/web/20250222090126/https://www.landesrecht-mv.de/bsmv/document/jlr-FTGMVV3P2) * [Niedersachsen](https://web.archive.org/web/20250627100126/https://voris.wolterskluwer-online.de/browse/document/b724111b-6c20-3862-b111-589842acacba) * [Nordrhein-Westfalen](https://web.archive.org/web/20250717194916/https://recht.nrw.de/lmi/owa/br_bes_detail?bes_id=3367&aufgehoben=N&det_id=144445&anw_nr=2&menu=1&sg=0) * [Rheinland-Pfalz](https://web.archive.org/web/20250521153233/http://www.landesrecht.rlp.de/bsrp/document/jlr-FeiertGRPpP2) * [Schleswig-Holstein](https://web.archive.org/web/20250812223916/https://www.gesetze-rechtsprechung.sh.juris.de/bssh/document/jlr-FeiertGSH2004V3P2) * [Saarland](https://web.archive.org/web/20250124112139/http://recht.saarland.de/bssl/document/jlr-FeiertGSL1976V6P2) * [Sachsen](https://web.archive.org/web/20250808020452/https://www.revosax.sachsen.de/vorschrift/3997-SaechsSFG) * [Sachsen-Anhalt](https://web.archive.org/web/20250615214949/http://www.landesrecht.sachsen-anhalt.de/bsst/document/jlr-FeiertGSTpP2) * [Thüringen](https://web.archive.org/web/20250712163548/http://landesrecht.thueringen.de/bsth/document/jlr-FeiertGTHV5P2) !!! note "Note" "Mariä Himmelfahrt" is only a holiday in Bavaria (BY) and "Fronleichnam" in Saxony (SN) and Thuringia (TH) if municipality is mostly catholic which in term depends on census data. It's listed in "CATHOLIC" category for these provinces. !!! note "School holidays" German school holidays are subdivision-specific. """ country = "DE" default_language = "de" # Germany reunification was completed on Oct 3, 1990. start_year = 1991 subdivisions = ( # States. "BB", # Brandenburg. "BE", # Berlin. "BW", # Baden-Württemberg. "BY", # Bayern. "HB", # Bremen. "HE", # Hessen. "HH", # Hamburg. "MV", # Mecklenburg-Vorpommern. "NI", # Niedersachsen. "NW", # Nordrhein-Westfalen. "RP", # Rheinland-Pfalz. "SH", # Schleswig-Holstein. "SL", # Saarland. "SN", # Sachsen. "ST", # Sachsen-Anhalt. "TH", # Thüringen. # Cities. "Augsburg", ) subdivisions_aliases = { "Brandenburg": "BB", "Berlin": "BE", "Baden-Württemberg": "BW", "Bayern": "BY", "Bremen": "HB", "Hessen": "HE", "Hamburg": "HH", "Mecklenburg-Vorpommern": "MV", "Niedersachsen": "NI", "Nordrhein-Westfalen": "NW", "Rheinland-Pfalz": "RP", "Schleswig-Holstein": "SH", "Saarland": "SL", "Sachsen": "SN", "Sachsen-Anhalt": "ST", "Thüringen": "TH", } supported_categories = (CATHOLIC, PUBLIC, SCHOOL) supported_languages = ("de", "en_US", "th", "uk") _deprecated_subdivisions = ("BYP",) def __init__(self, *args, **kwargs) -> None: ChristianHolidays.__init__(self) InternationalHolidays.__init__(self) StaticHolidays.__init__(self, GermanyStaticHolidays) super().__init__(*args, **kwargs) @staticmethod def _get_school_holiday_names() -> dict[int, str]: return { # Autumn Break. AUTUMN_BREAK: tr("Herbstferien"), # Christmas Break. CHRISTMAS_BREAK: tr("Weihnachtsferien"), # Winter Break. WINTER_BREAK: tr("Winterferien"), # Easter/Spring Break. EASTER_SPRING_BREAK: tr("Oster-/Frühjahrsferien"), # Ascension/Whit Break. ASCENSION_WHIT_BREAK: tr("Himmelfahrts-/Pfingstferien"), # Summer Break. SUMMER_BREAK: tr("Sommerferien"), } def _populate_public_holidays(self): # New Year's Day. self._add_new_years_day(tr("Neujahr")) # Good Friday. self._add_good_friday(tr("Karfreitag")) # Easter Monday. self._add_easter_monday(tr("Ostermontag")) # Labor Day. self._add_labor_day(tr("Erster Mai")) # Ascension Day. self._add_ascension_thursday(tr("Christi Himmelfahrt")) # Whit Monday. self._add_whit_monday(tr("Pfingstmontag")) # German Unity Day. self._add_holiday_oct_3(tr("Tag der Deutschen Einheit")) if self._year <= 1994: # Repentance and Prayer Day. self._add_holiday_1st_wed_before_nov_22(tr("Buß- und Bettag")) # Christmas Day. self._add_christmas_day(tr("Erster Weihnachtstag")) # Second Day of Christmas. self._add_christmas_day_two(tr("Zweiter Weihnachtstag")) if self.subdiv == "BYP": self._populate_subdiv_by_public_holidays() def _populate_school_holidays(self): if self.subdiv is None: return None normalized_subdiv = self._normalized_subdiv subdiv = "BY" if normalized_subdiv in {"augsburg", "byp"} else normalized_subdiv.upper() school_holiday_names = self._get_school_holiday_names() for ( start_year_offset, start_month, start_day, end_year_offset, end_month, end_day, holiday_id, ) in GERMANY_SCHOOL_HOLIDAYS.get(self._year, {}).get(subdiv, ()): name = school_holiday_names[holiday_id] start_date = date(self._year + start_year_offset, start_month, start_day) end_date = date(self._year + end_year_offset, end_month, end_day) active_start = max(start_date, date(self._year, JAN, 1)) active_end = min(end_date, date(self._year, DEC, 31)) self._add_holiday(name, active_start) if duration_days := (active_end - active_start).days: self._add_multiday_holiday(active_start, duration_days, name=name) def _populate_subdiv_bb_public_holidays(self): # Easter Sunday. self._add_easter_sunday(tr("Ostersonntag")) # Whit Sunday. self._add_whit_sunday(tr("Pfingstsonntag")) # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_be_public_holidays(self): if self._year >= 2019: # Women's Day. self._add_womens_day(tr("Frauentag")) def _populate_subdiv_bw_public_holidays(self): # Epiphany. self._add_epiphany_day(tr("Heilige Drei Könige")) # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) # All Saints' Day. self._add_all_saints_day(tr("Allerheiligen")) def _populate_subdiv_by_public_holidays(self): # Epiphany. self._add_epiphany_day(tr("Heilige Drei Könige")) # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) # All Saints' Day. self._add_all_saints_day(tr("Allerheiligen")) def _populate_subdiv_by_catholic_holidays(self): # Assumption Day. self._add_assumption_of_mary_day(tr("Mariä Himmelfahrt")) def _populate_subdiv_hb_public_holidays(self): if self._year >= 2018: # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_he_public_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) def _populate_subdiv_hh_public_holidays(self): if self._year >= 2018: # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_mv_public_holidays(self): if self._year >= 2023: # Women's Day. self._add_womens_day(tr("Frauentag")) # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_ni_public_holidays(self): if self._year >= 2018: # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_nw_public_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) # All Saints' Day. self._add_all_saints_day(tr("Allerheiligen")) def _populate_subdiv_rp_public_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) # All Saints' Day. self._add_all_saints_day(tr("Allerheiligen")) def _populate_subdiv_sh_public_holidays(self): if self._year >= 2018: # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_sl_public_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) # Assumption Day. self._add_assumption_of_mary_day(tr("Mariä Himmelfahrt")) # All Saints' Day. self._add_all_saints_day(tr("Allerheiligen")) def _populate_subdiv_sn_public_holidays(self): # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) if self._year >= 1995: # Repentance and Prayer Day. self._add_holiday_1st_wed_before_nov_22(tr("Buß- und Bettag")) def _populate_subdiv_sn_catholic_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) def _populate_subdiv_st_public_holidays(self): # Epiphany. self._add_epiphany_day(tr("Heilige Drei Könige")) # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_th_public_holidays(self): if self._year >= 2019: # World Children's Day. self._add_holiday_sep_20(tr("Weltkindertag")) # Reformation Day. self._add_holiday_oct_31(tr("Reformationstag")) def _populate_subdiv_th_catholic_holidays(self): # Corpus Christi. self._add_corpus_christi_day(tr("Fronleichnam")) def _populate_subdiv_augsburg_public_holidays(self): self._populate_subdiv_by_public_holidays() # Assumption Day. self._add_assumption_of_mary_day(tr("Mariä Himmelfahrt")) # Augsburg Peace Festival. self._add_holiday_aug_8(tr("Augsburger Hohes Friedensfest")) class DE(Germany): pass class DEU(Germany): pass class GermanyStaticHolidays: """Germany special holidays. References: * * * """ special_public_holidays = { # Reformation Day. 2017: (OCT, 31, tr("Reformationstag")), } special_be_public_holidays = { 2020: ( MAY, 8, # 75th anniversary of the liberation from Nazism and # the end of the Second World War in Europe. tr( "75. Jahrestag der Befreiung vom Nationalsozialismus " "und der Beendigung des Zweiten Weltkriegs in Europa" ), ), 2025: ( MAY, 8, # 80th anniversary of the liberation from Nazism and # the end of the Second World War in Europe. tr( "80. Jahrestag der Befreiung vom Nationalsozialismus " "und der Beendigung des Zweiten Weltkriegs in Europa" ), ), # 75th anniversary of the East German uprising of 1953. 2028: (JUN, 17, tr("75. Jahrestag des Aufstandes vom 17. Juni 1953")), }