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
Built Distribution
File details
Details for the file chinese_calendar-1.5.0.tar.gz
.
File metadata
- Download URL: chinese_calendar-1.5.0.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 | 920baae5e865981b4dbf1d427284ce76f2c0159a150299e33a37c5a7511a520a |
|
MD5 | b2511c7d49c38252d7779a9da3e6a761 |
|
BLAKE2b-256 | 90ca058f8d38860d266fad6b1801f4c7fa6ff6e1b946f9d738b4242972722f3c |
File details
Details for the file chinese_calendar-1.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: chinese_calendar-1.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 2, Python 3
- 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 | dde9e1a2b032dea94761e0ed6c6ef299adee2083eb6a3a8de75fc54e35c18e87 |
|
MD5 | a2565fe601775079aedbc04810746cfd |
|
BLAKE2b-256 | 7484e76ccbc3ad40e06000333c09122d8f6974b1871c4e2cf4c84116b3c89e8c |