Files
entropy/libraries/tests/standalone/test_ftpinterface.py
2009-10-05 09:53:34 +02:00

9 lines
241 B
Python

# -*- coding: utf-8 -*-
from entropy.transceivers import FtpInterface
from entropy.output import TextInterface, print_generic
text = TextInterface()
ftp = FtpInterface("ftp://", text)
print_generic(ftp.get_file_md5("test.rnd"))
ftp.close()