Hi there, Thanks so much for helping! I have encountered one last stumbling block before testing : am I supposed to put my login id and password inside your script? I saw these lines related to the credentials in the script file, but I am not sure how to do that (I tried replacing 'name' and "self.username" with my own email, for example, but it did not work). Really appreciate for your help!
br = BasicNewsRecipe.get_browser(self)
if self.username is not None and self.password is not None:
br.open('https://www.mediapart.fr/login')
br.select_form(predicate=is_form_login)
br['name'] = self.username
br['password'] = self.password
br.submit()
return br
Quote:
Originally Posted by unkn0wn
I want you to test this with your login id and password.
I just removed parse_feeds and replaced it with google feeds links.
|