Risposte:
Python ha urllib2 integrato, che apre un oggetto simile a un puntatore a file da una risorsa IP (HTTP, HTTPS, FTP).
import urllib2, os
# See http://data.vancouver.ca/datacatalogue/2009facetsGridSID.htm
rast_url = 'ftp://webftp.vancouver.ca/opendata/2009sid/J01.zip'
infp = urllib2.urlopen(rast_url)
È quindi possibile trasferire e scrivere i byte localmente (ad esempio, scaricarlo):
# Open a new file for writing, same filename as source
rast_fname = os.path.basename(rast_url)
outfp = open(rast_fname, 'wb')
# Transfer data .. this can take a while ...
outfp.write(infp.read())
outfp.close()
print('Your file is at ' + os.path.join(os.getcwd(), rast_fname))
Ora puoi fare quello che vuoi con il file.
Un paio di modi per raggiungere questo obiettivo. È possibile utilizzare il modulo di sottoprocesso per chiamare wget: consultare http://docs.python.org/library/subprocess.html
import subprocess
retcode = subprocess.call(["wget", args])
Oppure puoi usare python per scaricare il file direttamente usando il modulo urllib (o urllib2) - http://docs.python.org/library/urllib.html . Ci sono esempi nella documentazione.
In questa risposta precedente è un metodo che utilizza una chiamata a os.system.
os.system('wget %s' % (fullurl))