I have an FME workspace that includes a Python start-up script used to download some zip files from a website:
import urllib
# Get Mining tenement zip files.
urllib.urlretrieve ("http://geodownloads.dmp.wa.gov.au/datacentre/download/mineral_inf/tenements.zip", save_path + "tenements.zip")
The script works fine in FME Desktop, but fails when run by FME Server with the error:
Error executing string `import urllib
Any ideas what the problem could be?
Thanks
Dave LL