Re: ftp.storlines error

2010-02-01 Thread Gabriel Genellina
En Sun, 31 Jan 2010 19:07:44 -0300, Mik0b0 escribió: Good day/night/etc. I am rather a newb in Python (learning Python 3). I am trying to create a small script for FTP file uploads on my home network. The script looks like this: from ftplib import FTP ftp=FTP('10.0.0.1') ftp.login('mike','***

Re: ftp.storlines error

2010-01-31 Thread Mik0b0
On Feb 1, 12:19 am, Chris Rebert wrote: > On Sun, Jan 31, 2010 at 2:07 PM, Mik0b0 wrote: > > Good day/night/etc. > > I am rather a newb in Python (learning Python 3). I am trying to > > create a small script for FTP file uploads  on my home network. The > > script looks like this: > > > from ftpl

Re: ftp.storlines error

2010-01-31 Thread Chris Rebert
On Sun, Jan 31, 2010 at 2:07 PM, Mik0b0 wrote: > Good day/night/etc. > I am rather a newb in Python (learning Python 3). I am trying to > create a small script for FTP file uploads  on my home network. The > script looks like this: > > from ftplib import FTP > ftp=FTP('10.0.0.1') > ftp.login('mike

ftp.storlines error

2010-01-31 Thread Mik0b0
Good day/night/etc. I am rather a newb in Python (learning Python 3). I am trying to create a small script for FTP file uploads on my home network. The script looks like this: from ftplib import FTP ftp=FTP('10.0.0.1') ftp.login('mike','*') directory='/var/www/blabla/' ftp.cwd(directory) ftp.