-
Notifications
You must be signed in to change notification settings - Fork 50
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 #484
Comments
Comment by johnbumgarner 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. |
Comment by AndyTheFactory you can achieve this with some minor changes.
and
|
Works in v0.9.1 |
Issue by ontopicprojects
Mon Oct 5 15:37:20 2020
Originally opened as codelucas/newspaper#847
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: