Quote:
Originally Posted by nook.life
Starson17, you are the best. The recipe works perfectly now.
|
Nook.life, I don't know if you are still here, but the Explosm feed occasionally has non-comic articles that point to a forum. I recently realized how to filter those out. All those articles have "showthread" in the link and they can be filtered out with this (untested) code:
Code:
def print_version(self, url):
match = re.search(r'showthread', url)
if not match:
return url
edit: I tested the code - it works great.