recuperando dados do ftp com script

0
ftp 123.456
Name: anonymous
Password: password
binary
cd 001
get mfile.d.Z

Eu preciso escrever um script que execute códigos acima para recuperar dados automaticamente.

    
por deepblue_86 08.06.2015 / 20:25

1 resposta

0

Aqui está um script Python simples:

#!/usr/bin/python

import ftplib

host = '127.0.0.1'
dir = '001'
filename = 'mdfile.d.z'

# connect

ftp = ftplib.FTP(host)

# login - anonymous by default
# use ftp.login("username", "password") if no anon access

ftp.login()

# change to desired dir

ftp.cwd(dir)

# fetch the file, and copy it to a file of the
# same name in the local pwd

with open(filename, 'wb') as local_file:
    ftp.retrbinary("RETR {}".format(filename), local_file.write) 
    
por stevieb 08.06.2015 / 21:01