From 58d309ed92dc37670635fb7c60a37d7fdada68bf Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Sat, 22 Nov 2014 18:24:34 +0100 Subject: ratings --- imdb-lookup/imdbinfo.py | 3 ++- imdb-lookup/index.jinja2.html | 10 +++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'imdb-lookup') diff --git a/imdb-lookup/imdbinfo.py b/imdb-lookup/imdbinfo.py index 26129b8..71fd5f7 100755 --- a/imdb-lookup/imdbinfo.py +++ b/imdb-lookup/imdbinfo.py @@ -175,7 +175,7 @@ def do_index(args, imdb_ids): print("Failed to import jinja2 library for html-templating") sys.exit(1) template_file = os.path.join(os.path.dirname(__file__), "index.jinja2.html") - template = Template(open(template_file).read()) + template = Template(open(template_file, "rb").read().decode('utf-8')) with TMDBCache() as tmdbcache: #infos = list(map(tmdbcache.infos, imdb_ids)) #posters = list(map(asBase64, map(tmdbcache.poster, map(lambda info: info['poster_path'], infos)))) @@ -184,6 +184,7 @@ def do_index(args, imdb_ids): 'tmdbcache' : Protector(tmdbcache), 'title' : 'Movie overview', 'urlencode' : urlencode, + 'int' : int, } assert not os.path.exists("index.html"), "index.html already exists" stream = template.generate(mapping) diff --git a/imdb-lookup/index.jinja2.html b/imdb-lookup/index.jinja2.html index abf194e..a87092e 100644 --- a/imdb-lookup/index.jinja2.html +++ b/imdb-lookup/index.jinja2.html @@ -13,7 +13,15 @@ {% set posterBase64 = tmdbcache.poster_base64(info['poster_path']) %} {% if info %}
-

{{ info.title }}

+

+ {% if "vote_average" in info.keys() %} + {{ " ".join(["★"] * int(info["vote_average"])) }} + + {{ " ".join(["☆"] * (10-int(info["vote_average"]))) }} + + {% endif %} + {{ info.title }} +

{% if posterBase64 %} -- cgit v1.2.1