also cover url for hindustan times
https://github.com/kovidgoyal/calibr...n_times.recipe
found that its much easier to get covers from magzter.
Code:
def get_cover_url(self):
soup = self.index_to_soup('https://www.magzter.com/IN/HT-Digital-Streams-Ltd./Hindustan-Times-Delhi/Newspaper/')
for citem in soup.findAll('meta', content=lambda s: s and s.endswith('view/3.jpg')):
return citem['content']
We can get so many daily updated cover urls from here with same code and changing links.