ReminderBot/bot/utils/holiday.py
leo f453a7917e Initial commit: add reminderBot project structure
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-05 11:40:58 +08:00

13 lines
324 B
Python

from datetime import date
try:
import chinese_calendar as calendar
def is_holiday(d: date) -> bool:
return calendar.is_holiday(d)
except Exception:
# Fallback: treat weekends as holidays if library unavailable
def is_holiday(d: date) -> bool: # type: ignore[misc]
return d.weekday() >= 5