查询某天是否放假
Project description
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
相关项目:
- GitHub 上有另一个同名项目 https://github.com/valaxy/cnholiday
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cnholiday-0.2.0.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for cnholiday-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 589c20de51708868654f14076e580fc7395cbc61c6cd261bae8bd3dd98992e81 |
|
MD5 | b6ae61c26ce1ccd04c5c1935720345c7 |
|
BLAKE2b-256 | 00a6f96cdb4d84a8516f6f90cf4dd71c791170a399c4e0da1df09adfdd46393b |