A package to handle NRF's 454 calendar (Retail Calendar)
Project description
retailcalendar
A Python package for working with the NRF 4-5-4 Retail Calendar.
The retail calendar groups weeks into months following a 4-5-4 week pattern per quarter, giving retailers a consistent structure for fiscal year reporting. Some years have 53 weeks (a "53-week year") — this package handles that automatically.
Installation
pip install retailcalendar
CLI Usage
# Display the 4-5-4 calendar for the current year
454cal
# Display for a specific year
454cal 2025
# Use a different fiscal year start month (default is February)
454cal --start_month 1 2025
The output is a color-formatted calendar printed to the terminal, organized with 3 months per row and week numbers on the left.
Python API
from retailcalendar import Cal454
# Create a calendar for fiscal year 2025 (starts February 2025)
cal = Cal454(year=2025, s_month=2)
# Display the full calendar
cal.format_year()
# Get month start/end dates (list of 12 dates)
cal.month_start_dates()
cal.month_end_dates()
# Get quarter start/end dates (list of 4 dates)
cal.quarter_start_dates()
cal.quarter_end_dates()
# Get all weeks in a given month (1-indexed)
cal.month_days_by_week(month=1)
# Get all weeks for the entire year
cal.year_days_by_week()
# Check if a year has 53 weeks
Cal454.has_43_weeks(year=2023) # True
Cal454.has_43_weeks(year=2023, s_month=1) # False
Cal454 Parameters
| Parameter | Default | Description |
|---|---|---|
year |
current year | Fiscal year to calculate |
s_month |
2 |
Fiscal year start month (1–12) |
format_year() Parameters
| Parameter | Default | Description |
|---|---|---|
w_col |
2 |
Column width per day (min 2) |
space_month |
3 |
Space between month columns (min 3) |
line_months |
3 |
Number of months per row (min 3) |
How the 4-5-4 Calendar Works
Each fiscal quarter follows a 4-5-4 week pattern:
| Month in Quarter | Weeks |
|---|---|
| First | 4 |
| Second | 5 |
| Third | 4 |
The fiscal year normally has 52 weeks. Per NRF rules, a 53rd week is added to the last month of the year when the last day of a standard 52-week year has 4 or more days remaining in the start month. Known 53-week years (February start): 2000, 2006, 2012, 2017, 2023, 2028.
The fiscal year starts on the Sunday on or before February 1 (or the configured start month).
Development
git clone https://github.com/thig0w/454calendar.git
cd 454calendar
# Set up development environment (venv, dev deps, pre-commit hooks)
make devenv
# Run formatter, linter, and tests
make precommit
# Run tests only
.venv/bin/pytest
# Build distribution package
make build
# Clean everything
make clean
Requirements: Python 3.10+
License
GNU General Public License v3.0 — see LICENSE.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file retailcalendar-0.0.7.tar.gz.
File metadata
- Download URL: retailcalendar-0.0.7.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68b0695d14aa6919e31127d873b99904caa55aba12e2f7e3277b96a4ee6175c5
|
|
| MD5 |
c33ea4142036792ff069c1b21ee8ad06
|
|
| BLAKE2b-256 |
619aceeb9c5265b430850691083177a758938d4caeb105c63222cee38d8bcbd5
|
File details
Details for the file retailcalendar-0.0.7-py3-none-any.whl.
File metadata
- Download URL: retailcalendar-0.0.7-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcfbc47ecb62a1ec0b44c04b3eabc69e3b691111419bd9c5d4e98a67f21c4a91
|
|
| MD5 |
ded13fee7e2e291d3ceaa9e6644ad3ec
|
|
| BLAKE2b-256 |
c88e87ceb2dea901bbcb65770eb730d2b542c9537f4f862cb3387ed2d3521dfc
|