MIT tech review.. cover image fails to load
Code:
self.cover_url = soup.find(
"div", attrs={"class":lambda name: name.startswith("magazineHero__image") if name else False}).find(
"img",
src=True, attrs = {"class":lambda x: x.startswith('image__img') if x else False}
)['src']
absurl not required and img class needs to be defined
also remove_attributes = ['height', 'width']