}
def __init__(self, book_info):
- self.author = book_info.author.readable()
+ self.author = ", ".join(auth.readable() for auth in book_info.authors)
self.title = book_info.title
def pretty_author(self):
bar_width = 35
background_color = '#444'
author_color = '#444'
+ default_background = get_resource('res/webtreatsetc-5647576127-ccby.png')
+ format = 'JPEG'
epochs = {
u'Starożytność': 0,
bg_src = urlopen(book_info.cover_url)
self.background_img = StringIO(bg_src.read())
bg_src.close()
+ else:
+ self.background_img = self.default_background
def pretty_author(self):
return self.author.upper()