21 lines
860 B
Python
21 lines
860 B
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-2019
|
||
|
# Website: https://github.com/dr-prodigy/python-holidays
|
||
|
# License: MIT (see LICENSE file)
|
||
|
from holidays.countries import *
|
||
|
from holidays.constants import MON, TUE, WED, THU, FRI, SAT, SUN, WEEKEND
|
||
|
from holidays.constants import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, \
|
||
|
NOV, DEC
|
||
|
from holidays.holiday_base import HolidayBase, createHolidaySum
|
||
|
from holidays.utils import list_supported_countries, CountryHoliday
|
||
|
|
||
|
__version__ = '0.10.4'
|