Skip to main content

Lightweight fiscal and ISO calendar utilities.

Project description

PyPI Version

Calendar-Smith is a zero-dependency, high-performance Python utility for fiscal year calculations, ISO week mapping, and safe date parsing.

It was built for data engineers and analysts who need to process CSVs or perform calendar math without the overhead of heavy libraries like Pandas or Arrow.

Key Features

  • Safety-First Parsing: Strictly rejects ambiguous 6-digit (460614) and 7-digit (2026123) strings to prevent century errors and data corruption.

  • Fiscal Logic: Built-in support for US (fiscal year ends Sep 30) and Japanese (fiscal year ends Mar 31) fiscal systems.

  • Fast-Path Execution: Utilizes datetime.fromisoformat for high-performance processing of standard data.

  • Timezone Utilities: Lightweight helpers for UTC, JST, ET, and other common timezones with ISO 8601 support.

  • Ordinal Formatting: Human-friendly outputs (e.g., “1st week”, “3rd week”).

  • Zero External Dependencies: Uses only the Python Standard Library (3.10+).

Installation

pip install calendar-smith

To contribute or run tests:

git clone https://github.com/yeiichi/calendar-smith.git
cd calendar-smith
pip install -e ".[dev]"
pytest

CLI Commands

1. calendar-smith-csv

Appends a fiscal_year column to an existing CSV file. Supports:

  • us: fiscal year ends Sep 30

  • jp: fiscal year ends Mar 31

calendar-smith-csv records.csv records_with_fy.csv --system jp --date-column created_at

2. calendar-smith-solve

Lists the Monday-to-Sunday date ranges for every ISO week in a given year.

calendar-smith-solve 2026

3. calendar-smith-nth

Interactive tool to find the ordinal week of the month and the ISO week of the year for any date.

$ calendar-smith-nth
Date? [yyyy-mm-dd] (leave blank for today) >> 2026-02-17

Result:
  Date:       2026-02-17 (Tuesday)
  Month Week: The 3rd week
  Year Week:  The 8th week

4. calendar-smith-week-span

Show the Monday-to-Sunday span for a specific ISO week.

calendar-smith-week-span 2020 53

5. calendar-smith-windows

Generate date windows (consecutive, overlapping, or gapped) from a starting date using a fixed window size and repeat count. Use --sampling-rate (or -s) for overlapping or gapped windows.

# Generate 4 consecutive 7-day windows
calendar-smith-windows 2026-03-17 7 4

# Generate 4 overlapping 7-day windows starting every 1 day
calendar-smith-windows 2026-03-17 7 4 --sampling-rate 1

Example output:

Generated 4 windows starting from 2026-03-17 with size 7:
  Window  1: 2026-03-17 to 2026-03-23
  Window  2: 2026-03-24 to 2026-03-30
  Window  3: 2026-03-31 to 2026-04-06
  Window  4: 2026-04-07 to 2026-04-13

6. calendar-smith-tz

Convert an ISO 8601 datetime string from one timezone to another.

calendar-smith-tz 2026-03-20T10:00:00+09:00 America/New_York
# Output: 2026-03-19T21:00:00-04:00

Date Parsing Rules

To ensure data integrity, calendar-smith follows these parsing rules:

  • Accepted: 2026-02-17, 2026/02/17, 2026.02.17, 2026-2-17, 20260217.

  • Rejected:
    • 260217 (6-digit): Rejected to avoid century ambiguity (1926 vs 2026).

    • 2026123 (7-digit): Rejected because it could be Jan 23rd or Dec 3rd.

API Example

from calendar_smith import (
    get_fiscal_year,
    to_date,
    get_nth_week_of_month,
    get_dates_windows,
    get_iso_week_span,
    get_iso_weeks_for_year,
    format_ordinal,
    WeekSpan,
    DateRange,
)

# Parse a messy but valid string
d = to_date("2026/4/1")

# Get Japanese Fiscal Year (2026)
fy_jp = get_fiscal_year(d, system="jp")

# Get US Fiscal Year (2026 - fiscal year ends Sep 30, 2026)
fy_us = get_fiscal_year(d, system="us")

# Get week of month
week_num = get_nth_week_of_month(d)

# Get a specific ISO week span
span = get_iso_week_span(2026, 1)

# Get all ISO week spans for a year
all_weeks = get_iso_weeks_for_year(2026)

# Generate the next 4 date windows (default: consecutive)
future_windows = get_dates_windows(d, window_size=7, repeats=4)

# Generate overlapping windows (starting every 1 day)
overlapping = get_dates_windows(d, window_size=7, repeats=4, sampling_rate=1)

from calendar_smith import (
    now_utc,
    now_jst,
    to_timezone,
    to_iso,
    from_iso,
    JST,
    ET,
)

# Get current time in JST
dt_jst = now_jst()

# Convert to New York time (ET)
dt_et = to_timezone(dt_jst, ET)

# Get ISO 8601 string
iso_str = to_iso(dt_et)

# Parse ISO 8601 string
dt_parsed = from_iso("2026-03-20T10:00:00+09:00")

License

MIT License. See LICENSE for details.

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

calendar_smith-0.4.0.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

calendar_smith-0.4.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file calendar_smith-0.4.0.tar.gz.

File metadata

  • Download URL: calendar_smith-0.4.0.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for calendar_smith-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ea0a8d8b065fc89e519d5cb2be9e59d79591d597f7b70db1caebdf5ebd7820b0
MD5 5d7104f8d5005d692fdfa0b2a2154140
BLAKE2b-256 a40f3574d800b8a3d1082d8b96ba76f5a454b709971190c9db62588cccdb5e47

See more details on using hashes here.

File details

Details for the file calendar_smith-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: calendar_smith-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for calendar_smith-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 65ee8989a661a77d16289d6c4eb4aa036732d83cdc706c560f764a167e1abf62
MD5 b78e574f717878d71293527689f456d0
BLAKE2b-256 32b3dc105f9a30cb50df45dd3159ed43e07e4de85efcf48fc42ae5b02ae7b4ee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page