Is there a Pagination function in Jinja2 on Google App Engine?
I am thinking about using
from django.core.paginator import Paginatorfrom django. https://docs.djangoproject.com/en/dev/topics/pagination/?from=olddocs
I think I need to include django library in app.yaml:
libraries:
- name: django
version: "1.2"
But I want to know if this makes my application run slower because I include more libraries.