From 1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Tue, 21 Feb 2023 20:30:52 +0100 Subject: telefonsko popravilo py webappa --- templates/index.html | 10 +++++++++- travnik.py | 4 +++- www/app.py | 2 ++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index d83dfdf..2547750 100644 --- a/templates/index.html +++ b/templates/index.html @@ -31,7 +31,15 @@ {% if request.args.get("regex") %} -

število zadetkov: {{ lentorrents }}

+ {% if lentorrents < 100 %} +

+ število zadetkov: {{ lentorrents }} +

+ {% else %} +

+ prikazujem le prvih sto zadetkov +

+ {% endif %} {% endif %} {% for torrent in found_torrents %}

{{ torrent.name | e }}

diff --git a/travnik.py b/travnik.py index 98ef449..7aea6e4 100644 --- a/travnik.py +++ b/travnik.py @@ -79,6 +79,8 @@ class Torrent(): decoded = self.dict.get(b'info').get(b'name').decode() except UnicodeDecodeError: decoded = self.dict.get(b'info').get(b'name').decode("iso-8859-2") + except AttributeError: + decoded = str(self.dict.get(b'info').get(b'name')) if search(r, decoded, IGNORECASE): return True for path, size in self.paths(): @@ -98,7 +100,7 @@ class Torrent(): except UnicodeDecodeError: decoded = name.decode("iso-8859-2") # TODO we could try detecting the encoding if search(r, decoded, IGNORECASE): - files[decoded if decode else name] = content + files[decoded if decode else name] = content if type(content) is int else {} if type(content) is dict: inhalt = matching_files_r(content, r, decode) if inhalt: diff --git a/www/app.py b/www/app.py index 1bb512a..de60c37 100755 --- a/www/app.py +++ b/www/app.py @@ -27,6 +27,8 @@ def index(): for hash, torrent in torrents.items(): if not request.args.get("regex"): break + if len(result) >= 100: + break if torrent.matches(request.args.get("regex")): try: decodedname = torrent.dict.get(b'info').get(b'name').decode() -- cgit v1.2.3