An open API service indexing awesome lists of open source software.

https://github.com/pity7736/workingless

Holidays and working days calculations.
https://github.com/pity7736/workingless

holidays working-days

Last synced: 7 months ago
JSON representation

Holidays and working days calculations.

Awesome Lists containing this project

README

          

===========
Workingless
===========
.. image:: https://readthedocs.org/projects/workingless/badge/?version=latest
:target: https://workingless.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://circleci.com/gh/pity7736/workingless.svg?style=shield
:target: https://circleci.com/gh/pity7736/workingless

Workingless is a lib for holidays calculations. Currently it supports Colombia
and Mexico (beta) holidays.

`See full documentation `_.

Usage
-----

Workingless has four methods for the countries supported, they are:
``get_holidays_from_year``, ``is_holiday``, ``is_working_day`` and ``get_next_working_day``.

Example usage:

.. code-block:: python

import datetime

from workingless import countries

colombia = countries.COL()
holidays = colombia.get_holidays_from_year(year=2020)
print(type(holidays)) #
print(list(holidays))
# result:
# [
# datetime.date(2020, 1, 1),
# datetime.date(2020, 1, 6),
# datetime.date(2020, 3, 23),
# datetime.date(2020, 4, 5),
# datetime.date(2020, 4, 9),
# datetime.date(2020, 4, 10),
# datetime.date(2020, 4, 12),
# datetime.date(2020, 5, 1),
# datetime.date(2020, 5, 25),
# datetime.date(2020, 6, 15),
# datetime.date(2020, 6, 22),
# datetime.date(2020, 6, 29),
# datetime.date(2020, 7, 20),
# datetime.date(2020, 8, 7),
# datetime.date(2020, 8, 17),
# datetime.date(2020, 10, 12),
# datetime.date(2020, 11, 2),
# datetime.date(2020, 11, 16),
# datetime.date(2020, 12, 8),
# datetime.date(2020, 12, 25)
# ]
colombia.is_holiday(date=datetime.date(2020, 1, 1)) # True
colombia.is_working_day(datetime.date(2020, 1, 1) # False
colombia.get_next_working_day(datetime.date(2020, 1, 1) # datetime.date(2020, 1, 2)

License
-------

Distributed under the terms of the LGPLv3 license.

See `license `_.