question

Upvotes
Accepted
1 1 1 1

MRN via Python

Hi Experts,

Our client is trying to access MRN data via Python script. However, he said he got an error message , "550 No Such Directory"


Python script is as below.

------------------------------------------------------------------------------------

def download_mrn(date, issuer='RTRS'):

print(f'downloading {date} News from {issuer} ... ', end='\r')

# if doesnt exist data folder, make empty folder

if 'data' not in os.listdir():

os.mkdir('data')

date_dt = datetime.strptime(date, '%Y-%m-%d')

date_2 = date_dt.strftime("%Y%m%d")

year_str = date_dt.strftime("%Y")

month_str = date_dt.strftime("%m")

if issuer == 'RTRS':

issuer_ = issuer + '_'

else:

issuer_ = issuer

with FTP('mrn-ftp.thomsonreuters.com') as MRN:

MRN.login('id', 'password') # id / pass

# MRN.cwd(f'News/Archives/Recent/{issuer_}/{year_str}/{year_str}-{month_str}')

MRN.cwd(f'News/Archives/Historical/{issuer_}/{year_str}/{year_str}-{month_str}')

file_list = MRN.nlst()

-----------------------------------------------------------------------------------

What he wants is to access data in below directory, not via using FTP software but via Python script.

/News/Archives/Historical/RTRS_/

/News/Archives/Historical/3PTY/


Can you share any thoughts on this?

Thank you in advance!

pythonmrn
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @hyunjeong.shim ,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes, please click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

@hyunjeong.shim

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

-AHS

1 Answer

· Write an Answer
Upvotes
Accepted
78.9k 250 52 74

@hyunjeong.shim

The client needs to make sure that the path ('News/Archives/Historical/{issuer_}/{year_str}/{year_str}-{month_str}') is correct and valid on the FTP server.

The error "550 No Such Directory" indicates that the requested directory is not available on the FTP server. The client can use the FTP software the verify the directory name.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.