nikhilkumarsingh / gnewsclient

An easy-to-use python client for Google News feeds.
MIT License
50 stars 27 forks source link

Article full-text and meta-data extraction #5

Open nikhilkumarsingh opened 7 years ago

nikhilkumarsingh commented 7 years ago

Check out newspaper.

This task can be divided into 2 parts:

  1. Instead of creating a dictionary, make an Article object for each fetched article.
  2. Use newspaper module to fetch meta data and text of the article as well.
CodeVINCI commented 7 years ago

task1 means - client.get_news() must return a list of Article objects?

CodeVINCI commented 7 years ago

10

ghost commented 6 years ago

is it possible to retrieve the date and time of the news? is there any modification possible at a custom level?

nikhilkumarsingh commented 6 years ago

You can try to modify this function to scrape any extra data according to your needs.

ghost commented 6 years ago

I was thinking is there a possible way to get the news result till page five or more results than just 10?