The most recent content from our members.
My code is as follows : import eikon as ek headlines = ek.get_news_headlines(query='IBM.N', count=1, date_from=None, date_to=None, raw_output=True, debug=False) print(headlines) Running result is as follows : {'headlines': [{'displayDirection': 'LeftToRight', 'documentType': 'Story', 'firstCreated':…
Hi, this question is regarding the Codebook (Python 3 console). Using the news.get_story function, is there a way to pull specific headlines from my News Alerts, without the need for manually inputting the topics, sources, and filters into the parameters of said code?
hi there! im trying to use the get_news_headlines function to pull out headlines for a list of entities. The list if entities are saved on to a txt. file saved locally on my computer. As an example, my txt file contains the name "SINGAPORE AEROSPACE MANUFACTURING PTE LTD". While running the get_news_headlines function, I…
Is there a more organized way to retrieve metadata information within the News service? The current script, rd.content.news.story.Definition("urn:newsml:reuters.com:20240508:nL4N3HB510:3").get_data(), outputs metadata in a format that is difficult to parse.
Hi all, I'm looking to leverage the refinitiv.data API (the .content.news package) to fetch latest news for a specific company. I would like to usethe company's PermID to filter the data, any idea how that query would look like ? Also i can't find a good documentation for the refintiv.data.content.news package, any…
Hi I'm trying to replicate a search I complete using the Eikon News Monitor. Below is the code I use in the search bar when completing the search. Topic:GB AND "restatement" The issue I am having is that in the News Monitor, I change the Search Mode from 'Headlines' to 'Headline & Story Text' which I am unsure how to do…
I would like to filter the search by particular news providers. Instead of searching for codes manually in the news monitor app, I would like to access a dictionary with mapped codes to newspaper names, e.g Business Insider: BUSINT. Is there a dictionary of codes for all news publishers? Otherwise, is there a list of all…
I am using multiple API key (which were generated by API key Generator in the refinitv eikon Desktop) . I have Suppose four API keys each API key associated with different account and each account logged on different PC. I am trying to use all the four API keys to get the data from eikon data API but on single PC . So as…
Hi! I am not getting the same result while on monitor i am using these and same query i am using on jupyter notebook both are giving different results. The query i am using in jupyter notebook: ek.get_news_headlines(query = "AA AND Language:LEN AND ( Topic:NEWS1 OR Topic:FED OR Topic:ECB OR Topic:BOE OR Topic:BOC OR…
Hello Team, I am using the following code to get news from eikon refenitiv, but it is retrieving just the old news. df_news = ek.get_news_headlines(query='CRF: Carbon', count=10) story_id = df_news.loc[df_news['text'].str.contains('CRF: Carbon EUA daily outlook')]['storyId'][0] # Show the news in HTML format top_news_story…
It looks like you're new here. Sign in or register to get started.