I've found an odd feature of the Python google-calendar API that I do
not fully understand. I'm able to query the calendar and get a bunch
of events. I can look at those event objects and get the actual
instances of those repeating events, and for small queries all results
look good.

Problems occur when I attempt a bigger query, for example suppose I
were to grab a 24 hour chunk of the calendar (e.g. all of Sunday) and
then I attempt to get a 48 hour chunk which is a super-set of the
original (e.g. all of Sunday + all of Monday). If I were to look at
the events obtained the first one ought to be a sub-set of the second
one but that is not always the case.

In the above example, there are always items missing from the bigger
result-set. It's as if there's some kind of limit to how many single-
events my queries can return.

I expect what's going on here is that the queries are being truncated
- perhaps there is some kind of maximum limit on the amount of data
any single query can return, if so is there a way to determine if
truncation has occurred? Alternatively is there a way to modify the
query so that I can ensure that the results are never truncated.

I'm querying the calendar like this:
http://pastebin.com/m365bee74

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to