Handy script to pull from a website
import sys
import os
# download files
for i in range(1,10):
sUrl = "http://media.xiph.org/BBB/BBB-1080-png/";
sFilename = "big_buck_bunny_" + str(i).zfill(5) + '.png';
os.system('wget ' + sUrl + sFilename);
Handy script to pull from a website
import sys
import os
# download files
for i in range(1,10):
sUrl = "http://media.xiph.org/BBB/BBB-1080-png/";
sFilename = "big_buck_bunny_" + str(i).zfill(5) + '.png';
os.system('wget ' + sUrl + sFilename);
This entry was posted on February 17, 2010, 1:36 am and is filed under Computing. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
Fusion theme by digitalnature | powered by WordPress
Entries (RSS) and Comments (RSS) ^