debian-workalendar/workalendar/europe/belgium.py

20 lines
464 B
Python

from ..core import WesternCalendar
from ..registry_tools import iso_register
@iso_register('BE')
class Belgium(WesternCalendar):
'Belgium'
FIXED_HOLIDAYS = WesternCalendar.FIXED_HOLIDAYS + (
(5, 1, "Labour Day"),
(7, 21, "National Day"),
(11, 11, "Armistice of 1918"),
)
include_easter_monday = True
include_ascension = True
include_whit_monday = True
include_assumption = True
include_all_saints = True