数据来源:
年份 | 出处 |
---|---|
2019 | 国务院办公厅关于 2019 年部分节假日安排的通知 |
2020 | 国务院办公厅关于 2020 年部分节假日安排的通知 |
2021 | 国务院办公厅关于 2021 年部分节假日安排的通知 |
2022 | 国务院办公厅关于 2022 年部分节假日安排的通知 |
安装:
# 不依赖第三方包库
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
相关项目:
- GitHub 上有另一个同名项目 https://github.com/valaxy/cnholiday