check if some day is holiday in China
Project description
中国节假日
判断某年某月某一天是不是工作日/节假日。 支持 2004年 至 2020年,包括 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.4.0.tar.gz
(8.5 kB
view details)
Built Distribution
File details
Details for the file chinesecalendar-1.4.0.tar.gz
.
File metadata
- Download URL: chinesecalendar-1.4.0.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2db14b76692e2184686e0b86b60f300493d497b2678ff3734f1b894c04b06573 |
|
MD5 | 7f1511fa7a265758464208a8918f6456 |
|
BLAKE2b-256 | d50c08efab246549c9a6b79ed5752bd608ce14d73579b9f1b5b5322d63991621 |
File details
Details for the file chinesecalendar-1.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: chinesecalendar-1.4.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.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26701c09077b76bc503a059a3efb4d7724b8de71c0a16794638b6d1a21d365ce |
|
MD5 | e5b5f4e8d2664883b931cb9f44f10f0a |
|
BLAKE2b-256 | e3bb72ebf14b7bc6ba47845f8f0c63beb4debad8c29ac0d3f1ceaf051b673e7c |