recurring-ical-events
Calculate recurrence times of events, todos, alarms and journals based on icalendar RFC5545.
What it is and what it does
This package solves the complexity of iCalendar recurrence by taking raw RFC 5545 calendar data and expanding recurring events, todos, journals, and alarms into their individual occurrences. It handles the full lifecycle: repetitions defined by RRULE, removals via EXDATE, and later edits to specific instances. You pass it a Calendar object from the icalendar library and query for events at a specific date or date range; it returns the expanded list of actual occurrences.
The package wraps six runtime dependencies—icalendar for parsing, python-dateutil for date math, tzdata and x-wr-timezone for timezone handling, typing-extensions for type hints, and backports-zoneinfo for older Python versions. It supports Python 3.8 through 3.14 and is actively maintained. There are no known security vulnerabilities.
Use it for:
- Expand a calendar feed to show all occurrences of a weekly meeting over the next month.
- Retrieve all instances of a recurring todo item to display in a task list.
- Build a scheduling UI that needs to show individual alarm times for a repeating event series.
- Export calendar data to a format that requires flat event lists instead of recurrence rules.
- Query a calendar for all events on a specific date, including those from recurring series.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Expands recurring iCalendar events (RFC 5545) into individual occurrences, handling repetitions, removals, and edits across events, todos, journals, and alarms.
Yes. The package is production-stable, actively maintained, has no known vulnerabilities, and solves a genuine RFC 5545 complexity that most calendar applications need. The LGPL-3.0-or-later license is permissive for most use cases (including proprietary software that doesn't modify the library itself). Install it if you work with iCalendar data and need to expand recurrence rules.
Install
recurring-ical-events on PyPI
pip
pip install recurring-ical-eventsuv
uv add recurring-ical-eventspoetry
poetry add recurring-ical-eventsInstalling recurring-ical-events
Before you install
Low friction: pure Python wheel, active maintenance (last commit 2026-07-20), production-stable status. Six runtime dependencies are all well-established calendar/timezone libraries.
License in practice
LGPL-3.0-or-later (copyleft): you may use this package freely, but any modifications you distribute must be released under the same or compatible license, and you must disclose the source.
Quickstart
pip install recurring-ical-events
import recurring_ical_events
from icalendar import Calendar
cal = Calendar.from_ics(ics_string)
events = recurring_ical_events.of(cal).at("2026-08-14")
Requires Python 3.8 or later; depends on icalendar and python-dateutil being installed.
Verify before relying
- Whether the package handles edge cases in RFC 5545 recurrence rules (RRULE) comprehensively or has known limitations.
- Performance characteristics when expanding events with complex recurrence patterns or very long time ranges.
Package facts
| License | LGPL-3.0-or-later (copyleft) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 6 — backports-zoneinfo, icalendar, python-dateutil, typing-extensions, tzdata, x-wr-timezone |
| Maintenance | actively maintained — 106 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 2,361,315/month — #3,103 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: recurring_ical_events-3.8.2-py3-none-any.whl
Keywords: alarm, calendar, events, icalendar, ics, journal, rfc5545, scheduling, todo
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
django-icalGenerates iCalendar (iCal) feeds from Django…
permissive · top 15,000 on PyPI
django-recurrenceProvides a Django model field and utilities for…
permissive · top 15,000 on PyPI
icalParse, create, and iterate over iCalendar (RFC…
permissive · top 15,000 on PyPI
icalendar-searcherSearches, filters, and sorts iCalendar…
agpl · top 15,000 on PyPI
icalendarParses, creates, and modifies iCalendar files…
permissive · top 5,000 on PyPI
icsReads and writes iCalendar (RFC 5545) files in…
permissive · top 15,000 on PyPI
icaleventsDownloads, parses, and queries iCalendar (.ics)…
permissive · top 15,000 on PyPI
x-wr-timezoneConverts ICS calendar files that use the…
copyleft · top 5,000 on PyPI
python-dateutilProvides parsing, arithmetic, and recurrence…
permissive · top 100 on PyPI
vobjectParses and serializes iCalendar and vCard…
permissive · top 5,000 on PyPI