19 lines
649 B
Python
19 lines
649 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-2020
|
||
|
# Website: https://github.com/dr-prodigy/python-holidays
|
||
|
# License: MIT (see LICENSE file)
|
||
|
|
||
|
MON, TUE, WED, THU, FRI, SAT, SUN = range(7)
|
||
|
WEEKEND = (SAT, SUN)
|
||
|
|
||
|
JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, \
|
||
|
NOV, DEC = range(1, 13)
|