I am trying to use the day field of a datetime property as a filter when selecting events from an iCal calendar.

The following doesn't seem to work (to select all events for the current date):

cal = app("iCal").calendars["myCalender"].get()
cDate = datetime.now()
cEvents = cal.events[its.start_date.day==cDate.day].get()

I get the result: AttributeError: Unknown property, element or command: 'day'

However, this works (for printing the days of any events)...

cal = app("iCal").calendars["myCalender"].get()
for cEvent in cal.events.get():
    print cEvent.start_date.get().day
link|improve this question
Where does the its object from the first example come from? – eumiro Apr 20 '11 at 8:50
feedback

1 Answer

This line

cal.events[its.start_date.day==cDate.day].get()

checks its.start_date.day==cDate.day and returns False or True. As an index, this translates into 0 and 1 and takes one of the first two elements in the cal.events list. Is this what you want?

link|improve this answer
it's not, its.start_date.day is a special object from appscript, with redefined eq check. It works as fields in SQLAlchemy. – Alexander Solovyov May 8 '11 at 10:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.