Red Hat business days calendar
Project description
This module builds on workdays to provide a networkdays() method that knows about the Red Hat business holidays.
Example: determine number of business days from today
import datetime
from rhcalendar import workdays
today = datetime.date.today()
to_date = datetime.date(2020, 1, 1) # something far away...
days = workdays(from_date=today, to_date=to_date)
print('%s is %d Red Hat business days from now.' % (to_date, days))
# prints "2020-01-01 is 435 Red Hat business days from now."
Locales
Currently this module only has the Red Hat US holiday calendar. Contributions welcome for other locales.
# Only locale option is 'en-US' (the default) for now.
days = workdays(from_date, to_date, locale='en-US')
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
rhcalendar-1.0.0.tar.gz
(3.1 kB
view details)
File details
Details for the file rhcalendar-1.0.0.tar.gz
.
File metadata
- Download URL: rhcalendar-1.0.0.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94b18ddfbca73b8bccf79d3574bd0a358c4dc5a049f27eebefa40ef0876ce632 |
|
MD5 | 79a1f374f121438792f500d590508cac |
|
BLAKE2b-256 | 5dfa9342c57d4be497acc361b2e4606d05606e056feebb2c1ce47b771e9f041d |