Thanks a mil..
In case anybody else needs this you need to amend "def get_browser()" function
def get_browser(self):
br = BasicNewsRecipe.get_browser()
# Add HTTP Basic/Digest auth username and password for website access.
br.add_password("http://domain.com", "username", "password")
return br
|