This library should contain logic for searching, filtering and sorting icalendar data, as well as logic for storing and representing an icalendar search query.
- This will be used for the python CalDAV client library, both for bundling search parameters together in one object, for doing client-side filtering when the server does not support the desired search query.
- This may be useful in any kind of software handling collections of calendar content and needing to do filtering or searches on it.
- This may also be useful by calendar server developers.
I've decided to release 1.0 now as I think it's getting more or less feature-complete (with the exception of advanced operators). However, the library has not been battle-tested.
sort and check_component is used by the caldav project. It has not been used much in the wild yet, but they have been through some QA and is also tested by test-code from the caldav project.
filter, filter_calendar and sort_calendar has not been tested yet, is AI-generated and is only covered by AI-generated test code. There may be dragons.
I've decided to release 1.0 now as I think it's getting more or less feature-complete (with the exception of advanced operators). The API is considered stable and will follow semantic versioning going forward.
sort and check_component is used by the caldav project, it has not been used much in the wild yet, but has been through quite some testing.
filter, filter_calendar and sort_calendar has not been tested yet, is AI-generated and is only covered by AI-generated test code. There may be dragons.
Not yet implemented: operators like !=, <>, <, <=, >, >=, ~ (regex), etc.
No proper usage documentation has been written yet, sorry. There are tons of inline comments and docstrings though. The AI has contributed with quite some verbose comments in the test code, but little of it has been exposed to any proper QA.
from icalendar_searcher import Searcher
from datetime import datetime
# Create a searcher with filters
searcher = Searcher(
event=True, # Only events
start=datetime(2025, 1, 1),
end=datetime(2025, 12, 31)
)
# Add property filters
searcher.add_property_filter("SUMMARY", "meeting", operator="contains")
searcher.add_property_filter("LOCATION", "Office", operator="contains", case_sensitive=False)
# Check if a single component matches
result = searcher.check_component(calendar)
# Filter a list of components
calendars = [cal1, cal2, cal3]
matching = searcher.filter(calendars)
# Sort components
searcher.add_sort_key("DTSTART")
sorted_calendars = searcher.sort(calendars)By default, text filtering is case-sensitive. You can make it case-insensitive:
# Case-insensitive search (simple API)
searcher.add_property_filter("SUMMARY", "meeting", case_sensitive=False)
# Case-sensitive search (default)
searcher.add_property_filter("SUMMARY", "Meeting")Case-insensitivity is not straight-forward. It may cause non-deterministic sort results, and there may be problems with unicode characters - i.e., according to the CalDAV standard, case-insensitivity should only apply to ASCII-characters - causing mismatches between naïve and NAÏVE, cliché and CLICHÉ, smörgåsbord and SMÖRGÅSBORD, not to forget millions of words in non-English languages, complete non-latin scripts, etc. By default this library in itself handles Unicode relatively well - but for CalDAV searches, one may experience that case-insensitivity only applies to ASCII letters.
Two virtual properties are available for filtering by categories:
- "categories" (plural): Categories is considered to be a set of categories to be matched with the set of categories found in the event. If categories is given as a string, it will be split by the commas.
- "category" (singular): Category is considered to be a string, to be matched literally towards at least one of the categories in the event.
Examples:
# Match events with both "WORK" and "URGENT" categories (exact match)
searcher.add_property_filter("categories", "WORK,URGENT", operator="contains")
# Match events where any category contains "out" (e.g., "outdoor", "outing")
searcher.add_property_filter("category", "out", operator="contains")For advanced Unicode and locale-aware text comparison, install with:
pip install 'icalendar-searcher[collation]'Locale-specific collation is useful for proper handling of language-specific characters:
from icalendar_searcher.collation import Collation
# Turkish locale: İstanbul matches "istanbul" (Turkish İ → i)
searcher.add_property_filter("LOCATION", "istanbul",
collation=Collation.LOCALE,
locale="tr_TR",
case_sensitive=False)
# Without Turkish locale, İstanbul won't match "istanbul"
searcher.add_property_filter("LOCATION", "istanbul",
collation=Collation.UNICODE,
case_sensitive=False) # Won't match İstanbul
# Locale-aware sorting (e.g., Norwegian sorts æ, ø, å after z)
searcher.add_sort_key("SUMMARY", collation=Collation.LOCALE, locale="nb_NO")- The project depends on the icalendar library, all calendar contents handled by this library is coming in and out as
icalendar.Componentoricalendar.Calendar. However, the library should also support wrapped objects (like instances of thecaldav.Eventclass). - The project depends on the recurring-ical-events library for expanding recurrence sets.
- The project is used by the Python CalDAV client library
This is a spin-off from the python caldav project, started by Tobias Brox in 2025-11, the maintainer of the Python CalDAV client library at that time, in collaboration with the main contributors of the icalendar library.
The author has been experimenting a bit with AI usage while creating this project, both GitHub Copilot and Claude has been tested. Most of the test code has been created by the AI. AI has also been utilized a bit for refactoring, bug hunting, and a little bit code generation (particularly wrg of the collations support), but most of the "business logic" was written by me.
While all the AI-generated changes in the business logic has been looked through thoroughly, very little QA has been done on the test code.
In the early versions, the filter method will take the calendar contents one by one and check if it matches or not. This will work out well enough for small calendar sets. If lots of searches are to be done on fairly static data (like what typically may happen at the server side in a calendaring system), then it would be an idea to add indexes.
The expansion part may cause millions of recurrences to be created. It even supports open-ended intervals. It's possible by returning generators. However, things will most likely blow up and eat all the CPU and memory it gets the hands on whenever one wants to do sorting of such a thing.
As for now I'm releasing this under the GNU Affero General Public License v.3.0. If you find this too restrictive or if this causes license compatibility issues for you, I will consider to fix some dual licensing, like it's done with the python CalDAV library.
This also means that any contributor has to accept that the code is released under AGPL v3.0 and at some point in the future may be dual-licensed under some more permissive license, like the EUPL v1.1.
I don't have very strong opinions on licenses. If you have any issues in one way or another, please reach out.