I know how to download 1 file by pointing the urllib to the specific file.
How can I download all of the files in url? which includes links that a relative non relative
#Code to download 1 file, which im using at the moment
import urllib, os
os.chdir('/directory/to/save/the/file/to')
url = 'http://urltosite/myfile.txt'#Download all files in this url
urllib.urlretrieve(url)