check if some day is holiday in China
Project description
中国节假日
判断某年某月某一天是不是工作日/节假日。 支持 2004年 至 2021年,包括 2020年 的春节延长。
安装
pip install chinesecalendar
样例
import datetime
# 判断 2018年4月30号 是不是节假日
from chinese_calendar import is_workday, is_holiday
april_last = datetime.date(2018, 4, 30)
self.assertFalse(is_workday(april_last))
self.assertTrue(is_holiday(april_last))
# 或者在判断的同时,获取节日名
import chinese_calendar as calendar # 也可以这样 import
on_holiday, holiday_name = calendar.get_holiday_detail(april_last)
self.assertTrue(on_holiday)
self.assertEqual(calendar.Holiday.labour_day.value, holiday_name)
# 还能判断法定节假日是不是调休
import chinese_calendar
self.assertFalse(chinese_calendar.is_in_lieu(datetime.date(2006, 1, 1)))
self.assertTrue(chinese_calendar.is_in_lieu(datetime.date(2006, 1, 2)))
其它语言
假如你没法使用Python, 你也可以转译现成的常量文件来获取最全的节假日安排表。
贡献代码
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
chinesecalendar-1.5.1.tar.gz
(9.4 kB
view details)
File details
Details for the file chinesecalendar-1.5.1.tar.gz
.
File metadata
- Download URL: chinesecalendar-1.5.1.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c004cd4ee807a1216daf4f963b14c27f16aac77dace59a80a5547f5f24db55a8 |
|
MD5 | 8df01efb1af23fa1fbfa8310a55e758d |
|
BLAKE2b-256 | 2202146c953373d6469ddda2701b99c729fb99d792a880e603160e58197399c8 |