forked from vacanza/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
44 lines (43 loc) · 1018 Bytes
/
__init__.py
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
# 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.
#
# Authors: dr-prodigy <[email protected]> (c) 2017-2022
# ryanss <[email protected]> (c) 2014-2017
# Website: https://github.com/dr-prodigy/python-holidays
# License: MIT (see LICENSE file)
from holidays.constants import (
MON,
TUE,
WED,
THU,
FRI,
SAT,
SUN,
WEEKEND,
JAN,
FEB,
MAR,
APR,
MAY,
JUN,
JUL,
AUG,
SEP,
OCT,
NOV,
DEC,
)
from holidays.countries import *
from holidays.financial import *
from holidays.holiday_base import * # * import required for IDE docstrings
from holidays.utils import (
CountryHoliday,
country_holidays,
financial_holidays,
list_supported_countries,
list_supported_financial,
)
__version__ = "0.17.2"