I am new to Python and I am using urllib2
to download files over the internet.
I am using this code
import urllib2
response = urllib2.urlopen('http://www.example.com/myfile.zip')
...
This code actually save the zip file on my temp folder, I don't want it to be like that, I want to save it on my desired location. Is it possible?