We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can retrieve all my events from calendar (like this [1]) but objet is not iterable :
events = cal.list_events(start, end, details=True) print("Events: %s" % events) for event in events: print "{start} {stop} - {subject}".format( start=event.start, stop=event.end, subject=event.subject )
I've got this error :
TypeError: 'Exchange2010CalendarEventList' object is not iterable
I'm using v0.6
[1] : https://pyexchange.readthedocs.org/en/latest/#listing-events
The text was updated successfully, but these errors were encountered:
Checking unit tests, i find my error. It works now :
events = cal.list_events(start, end, details=True) for event in events.events: print "{start} {stop} - {subject}".format( start=event.start, stop=event.end, subject=event.subject )
You should update documentation like this :
events = my_calendar.list_events( start=timezone("US/Eastern").localize(datetime(2014, 10, 1, 11, 0, 0)), end=timezone("US/Eastern").localize(datetime(2014, 10, 29, 11, 0, 0)), details=True ) for event in events.events: print "{start} {stop} - {subject}".format( start=event.start, stop=event.end, subject=event.subject )
Sorry, something went wrong.
No branches or pull requests
I can retrieve all my events from calendar (like this [1]) but objet is not iterable :
I've got this error :
I'm using v0.6
[1] : https://pyexchange.readthedocs.org/en/latest/#listing-events
The text was updated successfully, but these errors were encountered: