From 7c4864d4ccb40234138043b0aae3356f15eeacf5 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 2 Mar 2013 21:24:18 +0100 Subject: move fetchiter from webapp to dedup.utils --- webapp.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'webapp.py') diff --git a/webapp.py b/webapp.py index dd1f99a..4a586dd 100755 --- a/webapp.py +++ b/webapp.py @@ -9,6 +9,8 @@ from werkzeug.exceptions import HTTPException, NotFound from werkzeug.routing import Map, Rule, RequestRedirect from werkzeug.wrappers import Request, Response +from dedup.utils import fetchiter + hash_functions = [ ("sha512", "sha512"), ("image_sha512", "image_sha512"), @@ -140,13 +142,6 @@ index_template = jinjaenv.from_string( {% endblock %}""") -def fetchiter(cursor): - rows = cursor.fetchmany() - while rows: - for row in rows: - yield row - rows = cursor.fetchmany() - def encode_and_buffer(iterator): buff = b"" for elem in iterator: -- cgit v1.2.3