I have the following code to get News using keywords from the API.
response = news.headlines.Definition(
query="data center",
date_from="01-01-1990",
count=1000000
).get_data()
data_center_news = response.data.df
data_center_news = data_center_news.reset_index()
print(len(data_center_news)) # number of rows in the DataFrame
print(data_center_news.head())
On the Work Refinitiv App one can filter by country and type of news. For example, I would be particularly interested in Press Releases. Is there a chance we can apply these filters in Python, too?
Thank you in advance,