Quote:
Originally Posted by kovidgoyal
Code:
def postprocess_html(self, soup, first):
for img in soup.findAll('img', src=True):
if img['src'].startswith('http:'): img.extract()
|
Thank you I'll give it a go.
Update: I appended this post process onto the offending site recipe, but they corrected their page so I have to assume it works great. One thing for sure it isn't doing any harm.
Thanks again.