feeds based recipe from
orfonline.org/
In bloomberg recipes.. images size is too large.
.
add below to preprocess_html.. in both the recipes.
Code:
for img in soup.findAll('img', attrs={'src':lambda x: x and x.endswith(('-1x-1.jpg', '-1x-1.png'))}):
img['src'] = img['src'].replace('-1x-1', '750x-1')