Somehow I am not able to get the same results for News Monitor using the Python API. For example:
In News Monitor, my query is as follows:
R:PGA190 AND "summary" AND "regrade" AND "deals"
This returns relevant news records that match the search query.
However, in the Python API, I receive nothing in response to this query:
df = ek.get_news_headlines(query="R:PGA190 AND summary AND regrade AND deals")
I have also tried adding quote marks:
df = ek.get_news_headlines(query="R:PGA190 AND 'summary' AND 'regrade' AND 'deals'")
What might be my mistake here?