6 lines
231 B
Python
6 lines
231 B
Python
from ftplib import FTP
|
|
|
|
ftp = FTP('ftp.asstr.org') # connect to host, default port
|
|
ftp.login() # user anonymous, passwd anonymous@
|
|
print ftp.getwelome()
|
|
ftp.retrbinary('RETR README', open('README', 'wb').write) |