sorry i am new HTML, pleases understand though my question is trivial.
i want to build simple search engine using python.
for that, first, i need to build a crawler to get linked URLs.
and i want to use regular expression to extract linked URLs.
so i did study, but i don't know the exact pattern for link in HTML.
from urllib import urlopen
import re
webPage = urlopen('http://web.cs.dartmouth.edu/').read()
linkedPage = re.findall(r'what should be filled in here?', webPage)