How to download a file through http on to a local folder on my server in jython(or python)
The below code might work
os.chdir(\"/path/to/change/to\"
How about urllib.urlretrieve
import urllib urllib.urlretrieve('http://python.org/images/python-logo.gif', '/tmp/foo.gif')
Use open(..., 'wb') to open the file where you like, urllib2.urlopen() to open the network resource, and shutil.copyfileobj() to copy from one to the other.
open(..., 'wb')
urllib2.urlopen()