Re: using python ftp

2010-12-30 Thread Stefan Schwarzer
Hello Matt, On 2010-12-23 01:03, Matt Funk wrote: > i was wondering whether someone can point me whether the following > already exists. > > I want to connect to a server , download various files (for whose name i > want to be able to use a wildcard), and store those files in a given > location o

Re: using python ftp

2010-12-24 Thread Giampaolo RodolĂ 
; > - Original Message - > From: "Anurag Chourasia" > To: "Matt Funk" > Cc: > Sent: Thursday, December 23, 2010 4:12 AM > Subject: Re: using python ftp > > >> Hi Matt, >> >> I have a snippet to "upload" files (th

Re: using python ftp

2010-12-23 Thread Matt Funk
Chourasia" > To: "Matt Funk" > Cc: > Sent: Thursday, December 23, 2010 4:12 AM > Subject: Re: using python ftp > > >> Hi Matt, >> >> I have a snippet to "upload" files (that match a particular search >> pattern) to a remote

Re: using python ftp

2010-12-23 Thread Octavian Rasnita
Can this lib also work with ftps? Thanks. Octavian - Original Message - From: "Anurag Chourasia" To: "Matt Funk" Cc: Sent: Thursday, December 23, 2010 4:12 AM Subject: Re: using python ftp > Hi Matt, > > I have a snippet to "upload" files (t

Re: using python ftp

2010-12-22 Thread MRAB
On 23/12/2010 02:12, Anurag Chourasia wrote: Hi Matt, I have a snippet to "upload" files (that match a particular search pattern) to a remote server. Variable names are self explanatory. You could tweak this a little to "download" files instead. from ftplib import FTP ftp = FTP(hostname) ftp.l

Re: using python ftp

2010-12-22 Thread Anurag Chourasia
Hi Matt, I have a snippet to "upload" files (that match a particular search pattern) to a remote server. Variable names are self explanatory. You could tweak this a little to "download" files instead. from ftplib import FTP ftp = FTP(hostname) ftp.login(user_id,passwd) ftp.cwd(remote_directory)