LSEG Machine Readable News Archive

Hello - We are trying to understand how to programmatically access the machine readable news archive via SFTP, in either Python or R. This is part of the Delivery Platform. We are hoping there are others with experience of using this within the community. Would anyone be able to share a code example? Thanks
Best Answer
-
Hello @darren.rogers
Like my colleague has suggested you above, you can use any Python SFTP libraries such as paramiko or pysftp and much more to connect to the MRN SFTP remote server.
I did a quick test with paramiko and it works fine.
Example Code (without any exceptions handling):
import paramiko
username = 'YOUR_MACHINE_ID'
password = 'YOUR_PASSWORD'
hostname = 'archive.news.refinitiv.com'
#Establish the SSH client
ssh = paramiko.SSHClient()
# Automatically add host keys (not secure for production)
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# Connect to the server
ssh.connect(hostname=hostname, username=username, password=password)
# Establish the SFTP client
sftp = ssh.open_sftp()
# check the current directory
print(sftp.listdir())
# Get the file
sftp.chdir('/mpsych/MI4/CMPNY_REF/BASIC')
print(sftp.listdir())
# Get the first file name
fileName = sftp.listdir()[0]
# Download the file
sftp.get(remotepath = fileName, localpath=f'.\download\{fileName}')
# Close a connection
sftp.close()Result:
You can find more detail about the paramiko library from the following websites:
0
Answers
-
Thank you for reaching out to us.
To use SFTP with Python or R, you need to use the package that can establish a secure connection to the SFTP server. You can find the SFTP Python packages by searching this "python sftp" keyword on Google.
0 -
Hi Wasin, thanks for your reply, this is most helpful! We're getting the below error when attempting to run the code:
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
Do you have any advice on this?Thanks
0 -
Thanks for your reply, this is most helpful! We're getting the below error when attempting to run the code:
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
Do you have any advice on this?Thanks
0 -
Hello @darren.rogers
Please be informed that the answered questions will not be monitor. Please post a new question next time.
About a connection, can you connect to archive.news.refinitiv.com with the SFTP application?If not, please contact the MRN support team via the https://myaccount.lseg.com/en/productsupport website to help you with this connection issue.
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 685 Datastream
- 1.4K DSS
- 616 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 252 ETA
- 556 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 275 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 652 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 193 TREP Infrastructure
- 228 TRKD
- 917 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 90 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 46 中文论坛