Skip to main content

holiday is a package to generate holiday.

Project description

Judgment whether the holiday

Requiremants

  • Python 2.7 or later.

Install

$ pip install holiday

holiday format

('*', '*', '*', '*', '*')
  ┬    ┬    ┬    ┬    ┬
  │    │    │    │    │
  │    │    │    │    │
  │    │    │    │    └─  number of week (1 - 5)
  │    │    │    └─── day of week (1 to 7 or mon to sun)
  │    │    └───── day of month (1 - 31)
  │    └─────── month (1 - 12)
  └───────── year (1 - 9999)

'*' The asterisk allows all

Usage

>>> holiday = Holiday([
...     (2016, 1, 1, 'fri', 1),
...     (2016, 1, 2, 'sat', 1),
... ])

>>> holiday.is_holiday(date(2016, 1, 1))  # 2016-1-1 Friday 1
True
>>> holiday.is_holiday(date(2016, 1, 3))  # 2016-1-3 Sunday 1
False
  • Express all values that can take in the field in asterisk (*)

>>> holiday = Holiday([
...     ('*', 1, 1, 'fri', 1),
...     ('*', 1, 1, 'thu', 1),
... ])

>>> holiday.is_holiday(date(2016, 1, 1))  # 2016-1-1 Friday 1
True
>>> holiday.is_holiday(date(2015, 1, 1))  # 2015-1-1 Thursday 1
True
>>> holiday.is_holiday(date(2014, 1, 1))  # 2014-1-1 Wednesday 1
False
  • is_business_day() returns the inverse of the truth-value of the is_holiday()

>>> holiday = Holiday([
...     ('*', '*', '*', '*', '*'),
... ])

>>> holiday.is_holiday(date(2016, 1, 1))  # 2016-1-1 Friday 1
True
>>> holiday.is_business_day(date(2016, 1, 1))  # 2016-1-1 Friday 1
False

License

This software is released under the MIT License, see LICENSE.txt.

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

holiday-1.0.0.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

holiday-1.0.0-py2.py3-none-any.whl (6.0 kB view hashes)

Uploaded Python 2 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