Files
entropy/libraries/tests/standalone/test_ftpinterface.py
2009-09-30 19:53:47 +02:00

8 lines
194 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()