Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: another example of using #427

Merged
merged 1 commit into from
Jul 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions examples/get_events_example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#!/usr/bin/env python3
import json
from os import environ as env

import caldav

username = env["CALDAV_USERNAME"]
password = env["CALDAV_PASSWORD"]
url = env["CALDAV_URL"]
caldav_url = f"https://{url}/{username}/"
headers = {}


def fetch_and_print():
with caldav.DAVClient(
url=caldav_url,
username=username,
password=password,
# Optional parameter to set HTTP headers on each request if needed
headers=headers,
) as client:
print_calendars_demo(client.principal().calendars())


def print_calendars_demo(calendars):
if not calendars:
return
events = []
for calendar in calendars:
for event in calendar.events():
for component in event.icalendar_instance.walk():
if component.name != "VEVENT":
continue
events.append(fill_event(component, calendar))
print(json.dumps(events, indent=2, ensure_ascii=False))


def fill_event(component, calendar) -> dict[str, str]:
cur = {}
cur["calendar"] = f"{calendar}"
cur["summary"] = component.get("summary")
cur["description"] = component.get("description")
cur["start"] = component.get("dtstart").dt.strftime("%m/%d/%Y %H:%M")
endDate = component.get("dtend")
if endDate and endDate.dt:
cur["end"] = endDate.dt.strftime("%m/%d/%Y %H:%M")
cur["datestamp"] = component.get("dtstamp").dt.strftime("%m/%d/%Y %H:%M")
return cur


if __name__ == "__main__":
fetch_and_print()