60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# python-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.
|
|
#
|
|
# Author: ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
# dr-prodigy <maurizio.montel@gmail.com> (c) 2017-2020
|
|
# Website: https://github.com/dr-prodigy/python-holidays
|
|
# License: MIT (see LICENSE file)
|
|
|
|
from datetime import date
|
|
|
|
from dateutil.easter import easter
|
|
from dateutil.relativedelta import relativedelta as rd, SA, FR
|
|
|
|
from holidays.constants import JAN, MAY, JUN, OCT, \
|
|
DEC
|
|
from holidays.holiday_base import HolidayBase
|
|
|
|
|
|
class Finland(HolidayBase):
|
|
# https://en.wikipedia.org/wiki/Public_holidays_in_Finland
|
|
|
|
def __init__(self, **kwargs):
|
|
self.country = "FI"
|
|
HolidayBase.__init__(self, **kwargs)
|
|
|
|
def _populate(self, year):
|
|
e = easter(year)
|
|
|
|
self[date(year, JAN, 1)] = "Uudenvuodenpäivä"
|
|
self[date(year, JAN, 6)] = "Loppiainen"
|
|
self[e - rd(days=2)] = "Pitkäperjantai"
|
|
self[e] = "Pääsiäispäivä"
|
|
self[e + rd(days=1)] = "2. pääsiäispäivä"
|
|
self[date(year, MAY, 1)] = "Vappu"
|
|
self[e + rd(days=39)] = "Helatorstai"
|
|
self[e + rd(days=49)] = "Helluntaipäivä"
|
|
self[date(year, JUN, 20) + rd(weekday=SA)] = "Juhannuspäivä"
|
|
self[date(year, OCT, 31) + rd(weekday=SA)] = "Pyhäinpäivä"
|
|
self[date(year, DEC, 6)] = "Itsenäisyyspäivä"
|
|
self[date(year, DEC, 25)] = "Joulupäivä"
|
|
self[date(year, DEC, 26)] = "Tapaninpäivä"
|
|
|
|
# Juhannusaatto (Midsummer Eve) and Jouluaatto (Christmas Eve) are not
|
|
# official holidays, but are de facto.
|
|
self[date(year, JUN, 19) + rd(weekday=FR)] = "Juhannusaatto"
|
|
self[date(year, DEC, 24)] = "Jouluaatto"
|
|
|
|
|
|
class FI(Finland):
|
|
pass
|
|
|
|
|
|
class FIN(Finland):
|
|
pass
|