-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blogger / Blogspot issue #847
Comments
The primary reason that you cannot extract from this site with Newspaper is because the tags commonly queried by this module do not exist on the website http://www.righto.com. You should use the Python libraries requests and BeautifulSoup to extract the items that you want. |
you can achieve this with some minor changes.
and
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some blogspot / blogger sites don't seem to parse: here is an example:
`from newspaper import Article
url = 'http://www.righto.com/2011/07/cells-are-very-fast-and-crowded-places.html'
article = Article(url)
article.download()
article.parse()
print(article.text)`
this prints ""
The text was updated successfully, but these errors were encountered: