You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

infinite_scroll_pagination.py 164B

12345
  1. class InfiniteScrollPagination:
  2. def __init__(self, data, limit, has_more):
  3. self.data = data
  4. self.limit = limit
  5. self.has_more = has_more