Re: [BangPypers] How to retrieve file from another server using Python

2010-10-11 Thread Anand Balachandran Pillai
On Sat, Oct 9, 2010 at 12:07 PM, Nitin Kumar wrote: > Hi all, > > I want to fetch/copy one file from a server. > what all things i can do for the same? Plz help > Depends on what language the server talks. Python supports almost all of the common internet protocols such as HTTP, FTP, SMTP, XML-R

Re: [BangPypers] How to retrieve file from another server using Python

2010-10-09 Thread Sujit Ghosal
Hi Nitin, Python has its own set of classes and methods to fetch,send HTTP/FTP and other protocol related data. First you make sure that on which port/protocol your communications (send/receive) will be done. Then choose the appropriate classes and so on. Let us know if you face any issues. Ho

Re: [BangPypers] How to retrieve file from another server using Python (Nitin Kumar)

2010-10-09 Thread Aditya Sahay
urlretrieve should work for you. ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] How to retrieve file from another server using Python

2010-10-09 Thread Sudheer Satyanarayana
On 10/09/2010 12:07 PM, Nitin Kumar wrote: Hi all, I want to fetch/copy one file from a server. what all things i can do for the same? Plz help Using Python you can connect to the server using various protocols - FTP, HTTP, SSH, etc. Serve the file on the server using any of these methods

Re: [BangPypers] How to retrieve file from another server using Python

2010-10-09 Thread Noufal Ibrahim
On Sat, Oct 09 2010, Nitin Kumar wrote: > Hi all, > > I want to fetch/copy one file from a server. > what all things i can do for the same? Plz help You can go to the server, burn the file onto a DVD, bring the DVD back to your machine and copy the file onto your hard disk. That's what I'd do if

[BangPypers] How to retrieve file from another server using Python

2010-10-08 Thread Nitin Kumar
Hi all, I want to fetch/copy one file from a server. what all things i can do for the same? Plz help -- Nitin K ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers