You can implement get_obfuscated_article() to get them manually, something like this
Code:
articles_are_obfuscated = True
def get_obfuscated_article(self, url):
br = self.get_browser()
try:
br.open(url)
except Exception as e:
url = e.hdrs.get('location')
html = br.open(url).read()
Then save the html to temporary file and return the path to the file.