Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python download file from ftp

# Try using the wget library for python

import wget
link = 'ftp://example.com/foo.txt'
wget.download(link)
 
PREVIOUS NEXT
Tagged: #python #download #file #ftp
ADD COMMENT
Topic
Name
8+3 =