|
>>
|
No. 356
File
12671285518.gif
- (31.82KB
, 736x736
, AWESOME Skeptisch.gif
)
>>343
Thank you. This is what up with. If anyone can make it better let me know. This is only the code to download and rename a file+ext.
import urllib, re
flocal = raw_input("File Location: ")
fname = re.compile("[^/]+$", re.IGNORECASE).search(flocal).group()
urllib.urlretrieve (flocal, fname)
|