Untitled
unknown
plain_text
4 years ago
296 B
11
Indexable
from ftplib import FTP
# defining host address, username and password - you can get it from the partner's Podio
host = "ftp://ftp.dlptest.com/"
user = "dlpuser"
password = "rNrKYTX9g7z3RgJRmxWuGHbeu"
with FTP(host) as ftp:
ftp.login(user=user, passwd=password)
print(ftp.getwelcome())
Editor is loading...