Código
from ftplib import FTP host = 'servidor.com' user = 'usuario' password = '123456' ftp = FTP(host, user, password) print('CONEXION ESTABLECIDA') archivo = open('HOLA.txt', 'rb') ftp.storbinary("public_html/HOLA ENVIADO.txt", archivo);
|
|||
Tema destacado: Recuerda que debes registrarte en el foro para poder participar (preguntar y responder) |
|
|