Here are some scripts, how do I put them together to create the script I want? (to search a online document and download all the links in it) p.s: can I set a destination folder for the downloads?
urllib.urlopen("http://....")
possible_urls = re.findall(r'\S+:\S+', text)
import urllib2
response = urllib2.urlopen('http://www.example.com/')
html = response.read()
--
http://mail.python.org/mailman/listinfo/python-list
