https://github.com/kovidgoyal/calibr...agazine.recipe
Cover fails
Code:
def get_cover_url(self):
cover_url = None
soup = self.index_to_soup('https://www.india-seminar.com/')
citem = soup.find('img', src = lambda x: x and 'covers' in x)
if citem:
cover_url = "https://www.india-seminar.com/" + citem['src']
return cover_url
and
remove_attributes = ['style', 'height', 'width']