获取中国法定节假日
Project description
get_holiday_cn
获取中国法定节假日
支持的python版本
python3.x
功能点
- 传入日期获取中国法定节假日
说明
安装
pip install get_holiday_cn
数据说明
{
"code": 0, // 0服务正常。-1服务出错
"type": {
"type": enum(0, 1, 2, 3), // 节假日类型,分别表示 工作日、周末、节日、调休。
"name": "周六", // 节假日类型中文名,可能值为 周一 至 周日、假期的名字、某某调休。
"week": enum(1 - 7) // 一周中的第几天。值为 1 - 7,分别表示 周一 至 周日。
"status": enum(0, 1) // 数据场景类型,0来源于仓库中的节假日或调休日;1表示当前传入日期在仓库中未查询到,直接走系统计算,可能为工作日或还未公布的节假日。
},
"holiday": { // 只有当type为2,3时,该对象才存在
"holiday": false, // true表示是节假日,false表示是调休
"name": "国庆节调休", // 节假日的中文名。如果是调休,则是调休的中文名,例如'国庆节调休'
"date": '2021-10-09' // 当前请求的日期
}
}
使用
from get_holiday_cn.client import getHoliday
client = getHoliday()
# 获取今日数据
print(client.assemble_holiday_data())
# 指定日期获取数据
print(client.assemble_holiday_data(today='2021-10-01'))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
get_holiday_cn-1.0.5.tar.gz
(5.0 kB
view details)
Built Distribution
File details
Details for the file get_holiday_cn-1.0.5.tar.gz
.
File metadata
- Download URL: get_holiday_cn-1.0.5.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7314f82bf5290b621b519713b5cc01a76aa697614b72c9bb13edba8c331c5a3 |
|
MD5 | f874303adba083ce0fec37aecb01643c |
|
BLAKE2b-256 | d5e664f323b30bed1a5f2c14d5c3e29950336e8efdc096e7e694865819ff3102 |
File details
Details for the file get_holiday_cn-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: get_holiday_cn-1.0.5-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95a104334727d3845c86d2a4a21a13124bf684c55c0876611a08b88e7f01317f |
|
MD5 | 884ab404b0af0939dc33fb00f8395127 |
|
BLAKE2b-256 | df808c4573f5ecc82725d3159bbd719ab2557cb14700cd5f3c4f12243af756a6 |