try adding this to the recipe and check.
Code:
def preprocess_html(self, soup):
for img in soup.findAll('img', attrs={'data-src': True}):
img['src'] = img['data-src']
return soup
upload the recipe here. you'll most probably be the only bengali here using this recipe but might help others someday.