-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawl.py
37 lines (34 loc) · 929 Bytes
/
crawl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
def get_all_links(page):
links =[]
while True:
url , endpos = get_next_target(page)
if url:
links.append(url)
page = page[endpos:]
else:
break
return links
def get_next_target(page):
start_link = page.find('<a href=')
if(start_link == -1):
return None,0
start_quote = page.find('"',start_link)
end_quote = page.find('"',start_quote + 1)
url = page[start_quote+1 : end_quote]
return url, end_quote
def get_page(url):
try:
import urllib
return urllib.urlopen(url).read()
except:
return ""
#listof pages =to crawl
def crawl_web(seed):
tocrawl = [seed]
crawled =[]
while tocrawl:
page = tocrawl.pop()
if page not in crawled:
union(tocrawl,get_all_links(get_page(page)))
crawled.append(page)
return crawled