def upload(path):
    return Ftp.load().upload(to=path)
def download(path) -> Generator:
    return Ftp.load().download_all(to=path)