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 handl

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 incl

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: http://www.blendedtechnologies.com/instant-gratification-for-a-home-web-develop

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? http://www.sschwarzer.net/python/pytho

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 th