Issue1977

classification
Title: FTP Download
Type: Severity: critical
Components: Any Versions:
Milestone:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: darjus, fwierzbicki, sharma
Priority: Keywords:

Created on 2012-10-22.09:14:21 by sharma, last changed 2013-02-26.18:35:46 by fwierzbicki.

Messages
msg7481 (view) Author: alok (sharma) Date: 2012-10-22.09:14:20
Hi,

I want to download a csv file from FTP server.But i am facing some issue.
Please help me.

ftp = snpsftp.SnpsFTP('ftpurl', 'username', 'pwd')
ftp.setmode('ASCII')
ftp.mget('/ITAM', 'Capital_Defects.csv', 'e:/ftp Data')
ftp.close()

Thanks
Alok
msg7504 (view) Author: Darjus Loktevic (darjus) Date: 2012-11-04.18:24:45
Have you tried using http://docs.python.org/2/library/ftplib.html ?

Not sure what your problem is.
msg7802 (view) Author: Frank Wierzbicki (fwierzbicki) Date: 2013-02-26.18:35:46
No answer in a long time for follow up question, closing.
History
Date User Action Args
2013-02-26 18:35:46fwierzbickisetstatus: open -> closed
resolution: out of date
messages: + msg7802
nosy: + fwierzbicki
2012-11-04 18:24:45darjussetnosy: + darjus
messages: + msg7504
2012-10-22 09:14:21sharmacreate