Skip to main content

check if some day is holiday in Australia

Project description

🇯🇵澳洲节假日

License

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

安装

pip install australianscalendar

升级

pip install -U australianscalendar

澳洲的公众假期无调休,假期预测相比较很容易

样例

import datetime

# 判断 2023年1月1号 是不是节假日
from australians_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 australians_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,感谢开发者的付出

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

australianscalendar-1.0.0.tar.gz (12.1 kB view hashes)

Uploaded Source

Built Distribution

australianscalendar-1.0.0-py3-none-any.whl (8.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page