Pagination
Certain API operations return lists of objects. When the number of objects in the list is large, the API will paginate the results.
The Files.com Python SDK provides multiple ways to paginate through lists of objects.
Automatic Pagination
The auto_paging_iter method automatically paginates and loads each page into memory.
Manual Pagination
The load_next_page/has_next_page methods allow for manual pagination and loading of each page into memory.