Re: [BangPypers] Question on FTP

2013-08-23 Thread Samarendra
On Fri, Aug 23, 2013 at 4:20 PM, davidsnt wrote: > Yeah ftplib is a comprehensive library for all the ftp operations, but to > get hands on it and make stuffs in the way I wanted took a little time, > still I have some question on strobinary and retrbinary methods, > can some one walk me through

Re: [BangPypers] Question on FTP

2013-08-23 Thread Baiju M
On Fri, Aug 23, 2013 at 4:30 PM, davidsnt wrote: [...snip...] > Is using retrbinary to download files of size >4GB is a good practice? May be you can use wget/curl : https://www.gnu.org/software/wget/ http://curl.haxx.se/ There is also a library also: http://curl.haxx.se/libcurl/python/ -- Baij

Re: [BangPypers] Question on FTP

2013-08-23 Thread davidsnt
Also group I kindly request you not give the link "google it for me" it more annoying and makes novice programmers reluctant to post further questions, anyone in the group would have first tried google before posting his/her question, I wnt through the ftplib document but couldnt understand much st

Re: [BangPypers] Question on FTP

2013-08-23 Thread davidsnt
Yeah ftplib is a comprehensive library for all the ftp operations, but to get hands on it and make stuffs in the way I wanted took a little time, still I have some question on strobinary and retrbinary methods, can some one walk me through the internals of these methods, please In specific, the fo

Re: [BangPypers] Question on FTP

2013-08-23 Thread Arun Kumar Dharuman
have a look at ftplib library with retrbinary and storbinary methods you could do it. did you got struck? share the snippets that would help to resolve... http://googleitfor.me/?q=ftp+file+transfer+python 2013/8/20 davidsnt > Can some one please help me to find the best way to do a file upload

Re: [BangPypers] Question on FTP

2013-08-20 Thread Anand B Pillai
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 20 August 2013 05:14 PM, davidsnt wrote: > Can some one please help me to find the best way to do a file > upload and file download to a FTP server in python. Courtesy F-bot, http://effbot.org/librarybook/ftplib.htm (F-bot is the pseudonym

Re: [BangPypers] Question on FTP

2013-08-20 Thread Noufal Ibrahim
davidsnt writes: > Can some one please help me to find the best way to do a file upload and > file download to a FTP server in python. There is an ftplib module in the standard library. I'd start with that. [...] -- Cordially, Noufal http://nibrahim.net.in __

Re: [BangPypers] Question on FTP

2013-08-20 Thread steve
On Tuesday 20 August 2013 05:14 PM, davidsnt wrote: Can some one please help me to find the best way to do a file upload and file download to a FTP server in python. http://bit.ly/KKiEQX cheers, - steve ___ BangPypers mailing list BangPypers@python

Re: [BangPypers] Question on FTP

2013-08-20 Thread Samarendra
On Tue, Aug 20, 2013 at 5:14 PM, davidsnt wrote: > Can some one please help me to find the best way to do a file upload and > file download to a FTP server in python. > ​Are you looking to write a FTP client in python ? You can have a look at the *ftplib* library (http://docs.python.org/2/librar