xxxxxxxxxx
>>> from django.core.paginator import Paginator
>>> d = {'a': [1,2], 'b': [3,4], 'c': {"d": 87, 'e': 76}}
>>> a_tuple = tuple(d.items())
>>> a_tuple
(('a', [1, 2]), ('b', [3, 4]), ('c', {'d': 87, 'e': 76}))
>>> p = Paginator(a_tuple, 1)
>>> p1 = p.page(1)
>>> p1
<Page 1 of 3>
django paginator dictionary