Quote:
def print_version(self, url):
link =url + '?type=printer_friendly'
print link
|
Thanks for the response. Unfortunately, that does not work. With that, the recipe returns nothing. Completely blank. Any other ideas?
Here is the recipe again.
Code:
class AdvancedUserRecipe1273837220(BasicNewsRecipe):
title = u'Roll Call'
oldest_article = 7
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
needs_subscription = True
feeds = [(u'Roll Call', u'http://www.rollcall.com/issues/index.xml')]
def get_browser(self):
br = BasicNewsRecipe.get_browser()
if self.username is not None and self.password is not None:
br.open('http://www.rollcall.com/login')
br.select_form(name='login_form')
br['login_id'] = self.username
br['login_pwd'] = self.password
br.submit('submit')
return br
def print_version(self, url):
return url + '?type=printer_friendly