Python package with Czech public holidays
Project description
Python package with Czech public holidays.
Installation
From PyPI:
pip install czech-holidays
In case you have an adventurous mind, give a try to the source:
pip install git+https://github.com/honzajavorek/czech-holidays.git#egg=czech-holidays
Examples
Czech Holidays provides the following interface:
>>> from czech_holidays import czech_holidays
>>> holidays = czech_holidays(2022)
>>> holidays[:3]
[Holiday(date=datetime.date(2022, 1, 1), name='Nový rok', name_en="New Year's Day"),
Holiday(date=datetime.date(2022, 1, 1), name='Den obnovy samostatného českého státu', name_en='Restoration Day of the Independent Czech State'),
Holiday(date=datetime.date(2022, 4, 18), name='Velikonoční pondělí', name_en='Easter Monday')]
The function accepts year as a single argument and returns a list of named tuples:
>>> holidays[0].date
datetime.date(2022, 1, 1)
>>> holidays[0].name
'Nový rok'
>>> holidays[0].name_en
"New Year's Day"
Albeit named, it’s still just a tuple:
>>> holidays[0][0]
datetime.date(2022, 1, 1)
>>> holidays[0][1]
'Nový rok'
>>> holidays[0][2]
"New Year's Day"
>>> tuple(holidays[0])
(datetime.date(2022, 1, 1), 'Nový rok', "New Year's Day")
>>> holidays[0] < holidays[5]
True
Two shortcuts are available:
>>> from czech_holidays import czech_easter, czech_christmas
>>> czech_easter(2022)
Holiday(date=datetime.date(2022, 4, 18), name='Velikonoční pondělí', name_en='Easter Monday')
>>> czech_christmas(2022)
Holiday(date=datetime.date(2022, 12, 24), name='Štědrý den', name_en='Christmas Eve')
The aim of this library is to simplify work with Czech public holidays in current applications, thus it does not provide any historical data:
>>> czech_holidays(2013)
Traceback (most recent call last):
NotImplementedError: ...
Development
Install using poetry:
git clone git@github.com:honzajavorek/czech-holidays.git cd czech-holidays poetry install
Then run tests:
pytest
License: MIT
© 2022 Honza Javorek <mail@honzajavorek.cz>
This work is licensed under MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file czech-holidays-1.0.0.tar.gz
.
File metadata
- Download URL: czech-holidays-1.0.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.10.6 Darwin/21.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98bdc4d966ea92f69878d496b2d91d3dcb2dc810371d9fe932bf40f6d5187106 |
|
MD5 | f4c94025635a57e6f656325d81f115b8 |
|
BLAKE2b-256 | d4803caa40060eb29a3d121acd63c14e0afa72e26fb50384780b4a1122ea3c9b |
File details
Details for the file czech_holidays-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: czech_holidays-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.10.6 Darwin/21.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 981733d3d284fcb0cdee32d7f33606eef03c0018e03a2296cbfeebeb928ac98d |
|
MD5 | 5253db283427592050000b1435f3b051 |
|
BLAKE2b-256 | 824b061b9475cdb26c774a68cc70db0f5023b49421390939ca712d713c114c92 |