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
;
> - 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
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
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
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
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)