Dov Benyomin Sohacheski
Dov Benyomin Sohacheski
@aleblanc70 Can this be closed?
@Collinbrown95 Also closes #754
@Collinbrown95 I am a contributor just like you. I don't have write privileges. Sorry 😞
@mingrammer Any updates on this?
@mingrammer @ewinnington This can be closed.
@mingrammer Any updates?
@mingrammer Done! You still need to configure the *bot* https://github.com/apps/boring-cyborg
@chrisnicholls Thanks for the update. You should add a line to your main description with the word *"Closes: #270"* as to link the PR with this issue and automatedly close...
I am doing something similar, but without changing the _base_ code: ```python def paginate(client, repo, per_page, method_name='all', order_by='Id', **kwargs): # Can be any QBO object i.e. `Customer.count` total = repo.count(qb=client)...
Another more robust alternative: ```python class Paginator(object): def __init__(self, repo, per_page, qb=None): self._repo = repo self._per_page = per_page self._client = qb def all(self, order_by="", start_position=0): total = self._repo.count(qb=self._client) pages =...