uploading a file

hello , how can we upload -through FTP- a file using python ?

is there a way to know the progress ?


from ftplib import FTP
    ftp = FTP('ftp.parker-portfolio.com')
    ftp.login('username','password')
    ftp.storbinary('STOR /terrasirenum/blendserv/ip.txt', file('my_ip.txt'))

I love python

http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=upload+-through+FTP-+a+file+using+python