check if some day is holiday in China
Project description
中国节假日
判断某年某月某一天是不是工作日/节假日。 支持 2004年 至 2020年。 兼容 Python2 与 Python3.
安装
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.3.0.tar.gz
(8.0 kB
view details)
Built Distribution
File details
Details for the file chinesecalendar-1.3.0.tar.gz
.
File metadata
- Download URL: chinesecalendar-1.3.0.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 416a0e6b87fa8e6d5d5fb4e80f470136a5c4b9155abc856a9c2d96aaff819542 |
|
MD5 | 19728eff708d14905f2d5460141eb5d0 |
|
BLAKE2b-256 | 03ad309ac5dfa791a3a1a8a0836aa0e5fa746e1dda94959fbf267746be7780ba |
File details
Details for the file chinesecalendar-1.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: chinesecalendar-1.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d1ff33af62c8664c363078fb05c1f58373f79634ab004e65c75727c70cf4338 |
|
MD5 | bbecb33e91ddf2134a12f69eca6589f0 |
|
BLAKE2b-256 | d7c193deab7df56a2a645b0bbcbca90c90f5c0f747258fe85a83ae98684374d6 |