Google News is a free news aggregator provided and operated by Google Inc, selecting most up-to-date information from thousands of publications by an automatic aggregation algorithm.
Questions tagged [google-news]
131 questions
1
vote
2 answers
Only scrape google news articles containing an exact phrase in python
I'm trying to build a media tracker in python that each day returns all google news articles containing a specific phrase, "Center for Community Alternatives". If, one day, there are no new news articles that exactly contain this phrase, then no new…

Elijah Appelson
- 109
- 5
1
vote
0 answers
Flutter read Google News RSS feed, not possible to get description
i am trying to read out an RSS feed with dart, which works fine only the description property is not really readable. The thing is that the Google News RSS feed is giving me some html data which I do not know how to handle, there is a nice android…

SwiftUser91
- 21
- 1
1
vote
1 answer
AMP article incorrectly cached: article content not displayed
We've recently developed AMP versions for some of our articles and although they are available in Google News results, they appear incorrectly: the article content is not displayed as well as the category tags.
Here's an example with an article that…

Joëlle Castelli
- 41
- 5
1
vote
1 answer
How to create a Google News feed (xml) in Nuxt.js?
As in Google Docs it is shown that my feed needs to look like this:
…

omerS
- 817
- 2
- 9
- 21
1
vote
1 answer
Scraping newspaper article titles with google news
Below is my code for scraping news about domestic violence. This code worked perfectly the first time I used it. But back then I covered only 2-3 months period, I re-tried it with a wider time frame, it returns an empty string. Why might that be and…

semchena31
- 51
- 1
- 7
1
vote
1 answer
Retrieving JSON Title, URL from Pygooglenews feedParser
I'm trying to retrieve values from pyGoogleNews (https://github.com/kotartemiy/pygooglenews)
that is using feedParser to output the values.
Code Snippet as follows:
from pygooglenews import GoogleNews
gn = GoogleNews(lang = 'en', country =…

Gene
- 2,178
- 3
- 30
- 50
1
vote
1 answer
Rvest scraping google news with different number of rows
I am using Rvest to scrape google news.
However, I encounter missing values in element "Time" from time to time on different keywords. Since the values are missing, it will end up having "different number of rows error" for the data frame of…

Liang Wu
- 9
- 3
1
vote
1 answer
Google News in R
I am trying to get info from Google News. This is my code:
library(rvest)
library(tidyverse)
news <- function(term) {
html_dat <- read_html(paste0("https://news.google.com/search?q=",term,"&hl=es-419&gl=US&ceid=US%3Aes-419"))
dat <-…

racunen
- 23
- 6
1
vote
1 answer
Is it legal to use google news rss in a mobile application?
I am building a News App.Is it ok to use Google news rss feed for my app.Is it free or they charge for it?

Shweta
- 87
- 4
1
vote
2 answers
RSS feed for Google Search News Tab
There is a difference whether I search for something on news.google.com:
Or on google.com -> News tab:
For my purposes I get more useful results on the News tab on google.com and I need to know how to create an rss feed by search query. For…

sunwarr10r
- 4,420
- 8
- 54
- 109
1
vote
1 answer
How to use google news search on console application?
I want to search my company on google news for each hour by scheduled console application (c#).
How can i use google news api or something else? I need to search in one language, and sorted by date.

Bora Karadağ
- 13
- 5
1
vote
2 answers
Unable to scrape google news heading via their class
I am trying to scrape google news headings along with their links for input term. But when I searched via find_all method for a class that contains all news headings, it returned an empty list.
I tried with parent divs with their id's but the result…

Yash Tile
- 51
- 7
1
vote
1 answer
How to achieve android placeholder effect like google news app
I found that in The Google news app, the placeholder effect is very good, and I want to apply that effect to my app.
As known, when coding, we usually use default text, default background, or totally a bland activity before data has been loaded. But…

hy fa
- 551
- 1
- 6
- 10
1
vote
0 answers
Python: Request to scrape Google News within a date range not working
I'm trying to scrape news articles from Google News for a specified date range.
date_range_param = 'cdr:1,cd_min:07/31/2018,cd_max:08/12/2018'
params = {'q': company_name, 'tbm': 'nws', 'tbs': date_range_param}
page =…

Vikram Bajaj
- 93
- 1
- 9
1
vote
1 answer
Scraping Google news search
I am trying to get the number of results from a google news search for a specific day. In a browser this is easy - Do a google search, click the "news" tab, click "tools", then change the time period to the date you want, then click "tools" again…

Frobot
- 1,224
- 3
- 16
- 33