Skip to content

hack-fang/japanese-calendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🇯🇵日本节假日

License

判断某年某月某一天是不是工作日/节假日。 支持 2023~2024年

安装

pip install japanesecalendar

升级

pip install -U japanesecalendar

日本的公众假期无调休,有补假,假期预测相比较很容易

样例

import datetime

# 判断 2023年1月1号 是不是节假日
from japanese_calendar import is_holiday, is_workday
new_year = datetime.date(2023, 1, 1)
assert is_workday(new_year) is False
assert is_holiday(new_year) is True

# 或者在判断的同时,获取节日名
import japanese_calendar as calendar  # 也可以这样 import
on_holiday, holiday_name = calendar.get_holiday_detail(new_year)
assert on_holiday is True
assert holiday_name == calendar.Holiday.new_years_day.value

其它语言

假如你没法使用Python, 你也可以转译现成的常量文件来获取最全的节假日安排表。

贡献代码

  1. Fork + Clone 项目到本地
  2. 修改节假日定义
  3. 执行脚本自动生成常量文件
  4. 提交PR

致谢

本项目参考了LKI的chinese-calendar,感谢开发者的付出