Closed JBPressac closed 8 years ago
When iterating over records, Sickle automatically handles the paging with resumption tokens for you. Therefore the following part of your code already iterates over all records found by the ListRecords query, not just the first page.
for record in records_original:
print(record.raw)
Because there is no resumption token on the last page, the resumption_token
property will be empty after the iteration.
Hello, On Python 3.5.2 + Sickle 0.5, if we display the token after an iteration on a ListRecords, we get an AttributeError. Do you have any explanation about that ?
Thanks,