Files
entropy/libraries/tests/standalone/test_ftpinterface.py
2009-05-12 16:58:47 +02:00

8 lines
193 B
Python

from entropy.transceivers import FtpInterface
from entropy.output import TextInterface
text = TextInterface()
ftp = FtpInterface("ftp://", text)
print ftp.get_file_md5("test.rnd")
ftp.close()