class Paginator:
- """:class:`Paginator` can be used to paginate for any :class:`Client`
+ """Paginator( \
+ self, method, *args, limit=inf, pagination_token=None, **kwargs \
+ )
+
+ :class:`Paginator` can be used to paginate for any :class:`Client`
methods that support pagination
.. note::
:class:`Client` method to paginate for
args
Positional arguments to pass to ``method``
+ limit
+ Maximum number of requests to make to the API
+ pagination_token
+ Pagination token to start pagination with
kwargs
Keyword arguments to pass to ``method``
"""