Questions tagged [reuters]

Reuters is a news organization which provides many public datasets and APIs

Reuters is a news organization underneath the larger parent media company Thomson Reuters. They have many APIs available to developers which are summarized here

37 questions
1
vote
2 answers

How can I press an Excel Addin's Ribbon Button using C#? (Reuters Excel Addin)

I am writing a c# application to get data from excel where the data comes from an excel Reuters Addin. The Reuters addin creates two excel Ribbons (menu tabs next to "Home", "Insert", etc.) "Thomson Reuters Datastream" and "Thomson Reuters". In…
Alex
  • 45
  • 2
  • 7
1
vote
1 answer

Get the finance stocks key development links from Reuters

I am developing an android application which gives stock information using YQL. In the Yahoo interactive charts there are key developments as shown in the link: …
iPhoneCoder
  • 237
  • 1
  • 3
  • 11
0
votes
0 answers

Python requests sessions parameters for reuters.com web scraping

I try to scrape some news from reuters.com with python requests and BS. However, I've reached limit of the articles - motivates to use registration. I'm using this page: https://www.reuters.com/account/sign-in/ However, the response from python…
vaclavku
  • 1
  • 2
0
votes
0 answers

How to import a corpus from nltk in a variable to form ngarms in python?

I want to form an ngram using nltk corpus reuters. I tested my code to form ngrams on a small corpus saved on my local disk as a text file using: import nltk file = open('dummytext.txt', encoding = 'utf8').read() Now that my ngram probability code…
0
votes
0 answers

Refinitiv Market Monitor in R API

is there any possibility to integrate the Refinitiv Market Monitor in R? I don't need an API to Eikon Reuters, because there I don't have a user Thanks
MA_1760
  • 31
  • 5
0
votes
2 answers

web scrap stock data from Reuters

I am a programming beginner and trying to extract key metric data (e.g. Beta) for a stock from Reuters. However, it always come back as blank. my codes are like this: from bs4 import BeautifulSoup as bs import requests import re url =…
YY789
  • 3
  • 1
0
votes
1 answer

Is there a xml url for RSS Business newsfeed of Reuters or Bloomberg for flutter?

I tried to get the xml url from "https://www.reuters.com/business". And I couldn't find the xml files for reuters and bloomberg news.
0
votes
1 answer

Accessing Reuters data from R/VBA

I use the market QA data base and I would like to be able to access the data directly from R or vba or even another language if needed to pursue my studies. I couldn't find any API, has anyone here already done this before? Thanks
Anninha
  • 171
  • 2
  • 2
  • 6
0
votes
0 answers

Reuters Eikon/Datastream - obtain issue date of structured products

I want to download the isse date (or the date were the first price was set up) of 1,000 bonus certificates of different issuers. To do so, I converted Wertpapierkennummern (WKN, identifier at German exchanges) into RICs. With those RICs I could…
StableSong
  • 79
  • 11
0
votes
1 answer

pyrfa DLL load fails

I am trying to use the pyrfa module developed by devcartel. I have installed the package with the usual method: pip install pyrfa However, running a script that uses the module gives: ImportError: DLL load failed : The specific module cannot be…
Svalbard
  • 182
  • 2
  • 13
0
votes
1 answer

How to pass Reuters-21578 dataset as an input parameter for tokenize funktion in Python

I try to pass Reuters-21578 dataset as an input parameter into tokenize funktion def tokenize(text): which should delete stop words, tokenize ,stem and lowercase. #!/usr/bin/python3 import nltk import pandas as pd import numpy as np import…
Oleg_08
  • 447
  • 1
  • 4
  • 23
0
votes
1 answer

How to get more than 20 news headline links for a subsection (e.g. Middle East) of Reuters website using Python?

I am trying to scrape the Reuters website for all the news headlines related to the Middle East. Link to the webpage: https://www.reuters.com/subjects/middle-east This page automatically shows previous headlines as I scroll down but while I look at…
0
votes
1 answer

Python3: Multi-label text classification with reuters 21578 data set

I am using the following code to classify a document in to three categories Sports, Politics and money. I can see that this code calculates Precision recall and F1. But I am not able to find a way to use this code to test against custom document a…
0
votes
1 answer

Python package function does not match C++ signature

I am trying to read a configuration file with the Pyrfa Python package. This is my code: import pyrfa p = pyrfa.Pyrfa p.createConfigDb("./pyrfa.cfg") p.acquireSession("Session1") p.createOMMConsumer() This code has been copied from…
Svalbard
  • 182
  • 2
  • 13
0
votes
0 answers

Reuters dataset classes

I am researching on text classification using SVM. I am using reuters 21578 modapte dataset in arff format and classifying it using weka. I am getting two classes after classification viz., (-inf-0.5] and (0.5-inf). What are these classes? And how…