Re: ftp.storlines error

2010-02-01 Thread Gabriel Genellina
En Sun, 31 Jan 2010 19:07:44 -0300, Mik0b0 new...@gmail.com 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.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)

Re: ftp.storlines error

2010-01-31 Thread Chris Rebert
On Sun, Jan 31, 2010 at 2:07 PM, Mik0b0 new...@gmail.com 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')

Re: ftp.storlines error

2010-01-31 Thread Mik0b0
On Feb 1, 12:19 am, Chris Rebert c...@rebertia.com wrote: On Sun, Jan 31, 2010 at 2:07 PM, Mik0b0 new...@gmail.com 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