>>> a=urllib.urlopen( http://www.domain.com/bigvideo.avi )
>>> a.getcode()
404
>>> a=urllib.urlopen( http://www.google.com/ )
>>> a.getcode()
200
My question is...bigvideo.avi is 500MB. Does my script first download the file, then check it? Or, can it immediately check the error code without saving the file?