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 188B

2 years ago
1234567
  1. # -*- coding:utf-8 -*-
  2. class InfiniteScrollPagination:
  3. def __init__(self, data, limit, has_more):
  4. self.data = data
  5. self.limit = limit
  6. self.has_more = has_more