module documentation

Undocumented

Function ftp_makedirs_cwd Set the current directory of the FTP connection given in the ``ftp`` argument (as a ftplib.FTP object), creating all parent directories if they don't exist. The ftplib.FTP object must be already connected and logged in.
Function ftp_store_file Opens a FTP connection with passed credentials,sets current directory to the directory extracted from given path, then uploads the file to server
def ftp_makedirs_cwd(ftp, path, first_call=True): (source)

Set the current directory of the FTP connection given in the ``ftp`` argument (as a ftplib.FTP object), creating all parent directories if they don't exist. The ftplib.FTP object must be already connected and logged in.

def ftp_store_file(*, path, file, host, port, username, password, use_active_mode=False, overwrite=True): (source)

Opens a FTP connection with passed credentials,sets current directory to the directory extracted from given path, then uploads the file to server