8 lines
193 B
Python
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()
|