reorganising projects

--HG--
branch : sandbox
This commit is contained in:
Andreas
2009-10-24 15:00:35 +00:00
parent 67375bd6e3
commit 8f7760b2aa
7 changed files with 0 additions and 0 deletions

6
misc/ftpget.py Normal file
View File

@@ -0,0 +1,6 @@
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)