Python - Download files FTP

preview_player
Показать описание
Use Python to automate downloading files from a FTP server, and extract contents of .zip files.
Рекомендации по теме
Комментарии
Автор

Jesus, finally a code to download a file from FTP that works. Went through like 5 examples of the code and urs was the only one tha worked for me. Thank you!!!!

TheMisterArmagedon
Автор

That's amazing. Thank you for the detail.. :) Appreciate it

pratikmahamuni
Автор

You're awesome! Thank you for the informative video

kiahjones
Автор

It is much safer to use a with statement every time you're dealing with files in python

henriqueferr
Автор

how, caret application to download entire ftp server with python?

roiabest
Автор

Thanks for the video i have had to do something similar to you altough it didnt work exactly. I had to use this instead of your script at the beggining the rest is ok. (prints are just to see if its workign)
ftp = ftplib.FTP()
print ("- conecting... ")
print the rest is the same

Plaufin