I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 8f9e8fb1 authored by str4d's avatar str4d
Browse files

Added LazyView from http://flask.pocoo.org/docs/patterns/lazyloading/ to helpers

parent 254fab59
No related branches found
No related tags found
No related merge requests found
from math import ceil
from werkzeug import import_string, cached_property
class LazyView(object):
def __init__(self, import_name):
self.__module__, self.__name__ = import_name.rsplit('.', 1)
self.import_name = import_name
@cached_property
def view(self):
return import_string(self.import_name)
def __call__(self, *args, **kwargs):
return self.view(*args, **kwargs)
class Pagination(object):
def __init__(self, page, per_page, total_count):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment