Scripts/print_calendars
…
print_calendars.py
"""
Print some information about calendars
"""
from __future__ import print_function
from CalendarStore import CalCalendarStore
store = CalCalendarStore.defaultCalendarStore()
for calendar in store.calendars():
print("")
print("Name:", calendar._.title)
print("UUID:", calendar._.uid)
print("Type:", calendar._.type)