Re: An FTP Client...My first real program!

2008-08-14 Thread tmallen
On Aug 14, 9:54 am, tmallen <[EMAIL PROTECTED]> wrote: > On Aug 13, 11:53 pm, "Python Nutter" <[EMAIL PROTECTED]> wrote: > > > > > sorry cut off due to original email being sent not to the list due to gmail: > > > A second for that suggestion--the ftp module in the python standard library > > is >

Re: An FTP Client...My first real program!

2008-08-14 Thread tmallen
On Aug 13, 11:53 pm, "Python Nutter" <[EMAIL PROTECTED]> wrote: > sorry cut off due to original email being sent not to the list due to gmail: > > A second for that suggestion--the ftp module in the python standard library is > very low level and not very useful for beginners as a lot of the heavy

Re: An FTP Client...My first real program!

2008-08-13 Thread Python Nutter
sorry cut off due to original email being sent not to the list due to gmail: A second for that suggestion--the ftp module in the python standard library is very low level and not very useful for beginners as a lot of the heavy lifting and management is still left up to you, the programmer. 2008/8

Re: An FTP Client...My first real program!

2008-08-13 Thread Python Nutter
ery low level and not very useful for beginners as a lot of the heavy lifting and management is still left up to you, the programmer. The module ftputil is a high-level interface to the ftplib module. The FTPHost objects generated from it allow many operations similar to those of os and os.path. A

Re: An FTP Client...My first real program!

2008-08-13 Thread s0suk3
On Aug 13, 2:27 pm, tmallen <[EMAIL PROTECTED]> wrote: > Here's the code:http://pastebin.com/m21dfcc19 > > What could be improved? The script feels clumsy, and I have no > experience refactoring Python code. This will eventually be a GUI FTP > client. I'm mainly looking for design advice... Well o

Re: An FTP Client...My first real program!

2008-08-13 Thread tmallen
On Aug 13, 3:27 pm, tmallen <[EMAIL PROTECTED]> wrote: > Here's the code:http://pastebin.com/m21dfcc19 > > What could be improved? The script feels clumsy, and I have no > experience refactoring Python code. This will eventually be a GUI FTP > client. I'm mainly looking for design advice... Note t

An FTP Client...My first real program!

2008-08-13 Thread tmallen
Here's the code: http://pastebin.com/m21dfcc19 What could be improved? The script feels clumsy, and I have no experience refactoring Python code. This will eventually be a GUI FTP client. I'm mainly looking for design advice... -- http://mail.python.org/mailman/listinfo/python-list