Links

Connect

Tags: #ftp #file #naas_drivers #operations #snippet
Author: Jeremy Ravenel
Description: This notebook provides instructions on how to connect to an FTP server.

Input

Import library

from naas_drivers import ftp

Variables

user = "my user"
passwd = "my passwd"

Model

Connect to FTP

ftp_get = ftp.connect(user, passwd, port=990, secure=True)

Output

ftp_get
Last modified 1mo ago