cnholiday

查询某天是否放假


Keywords
holiday-calculation
Install
pip install cnholiday==0.2.0

Documentation

CNHoliday: 查询某天是否放假

数据来源:

年份 出处
2019 国务院办公厅关于 2019 年部分节假日安排的通知
2020 国务院办公厅关于 2020 年部分节假日安排的通知
2021 国务院办公厅关于 2021 年部分节假日安排的通知

安装:

# 不依赖第三方包库
pip install cnholiday

用法:

>>> from datetime import datetime
>>>
>>> from cnholiday import CNHoliday
>>>
>>>
>>> cnholiday = CNHoliday()
>>> _day = datetime(2019, 10, 1)
>>> print(cnholiday.check(_day))
True
>>> print(cnholiday.check_shift(_day))
True
>>> print(cnholiday.check_shift(_day, shift=2))
True
>>> print(cnholiday.check_shift(_day, shift=3))
True

相关项目: