High Level FTP library

2005-08-23 Thread Paulo Pinto
Hello, Is there any Python library similar to NET::FTP from Perl? ftplib seems too lowlevel. I already found a few, but would like to get one that is endorsed by the community. Thanks, Paulo -- http://mail.python.org/mailman/listinfo/python-list

Re: High Level FTP library

2005-08-23 Thread Jonas Geiregat
Paulo Pinto wrote: Hello, Is there any Python library similar to NET::FTP from Perl? ftplib seems too lowlevel. I already found a few, but would like to get one that is endorsed by the community. Thanks, Paulo libftp sucks just look at how it's written such evil code! Not that I know

Re: High Level FTP library

2005-08-23 Thread [EMAIL PROTECTED]
Paulo Pinto wrote: Hello, Is there any Python library similar to NET::FTP from Perl? ftplib seems too lowlevel. I already found a few, but would like to get one that is endorsed by the community. Thanks, Paulo Have you looked at ftputil?

Re: High Level FTP library

2005-08-23 Thread Gregory PiƱero
I reccomend ftputil (http://www.sschwarzer.net/python/python_software.html) also. I went through the same thing you did about 2 months ago and ftputil was the best I found. Here's a short script I wrote using ftputil:

Re: High Level FTP library

2005-08-23 Thread Russell E. Owen
In article [EMAIL PROTECTED], Paulo Pinto [EMAIL PROTECTED] wrote: Hello, Is there any Python library similar to NET::FTP from Perl? ftplib seems too lowlevel. I already found a few, but would like to get one that is endorsed by the community. Try urllib or urllib2; these are included with

Re: High Level FTP library

2005-08-23 Thread Peter A.Schott
I've used the ftputil package before with some success. It's not bad, but it really depends on what you're trying to do. If you write a couple of custom functions to get you started, you should be able to put those in a module and re-use as needed. I know that I had to code my own stuff to